-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.59 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "nextjs-tailwind-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:https": "HTTPS='true' node ./src/server.js",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint --ignore-path .eslintignore --dir src",
"lint:fix": "yarn lint --fix",
"format": "prettier --ignore-path .prettierignore --check .",
"format:fix": "yarn format --write",
"type-check": "yarn tsc --noEmit",
"check": "run-p lint format type-check",
"fix": "run-p lint:fix format:fix type-check",
"prepare": "husky install",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"@artcom/react-three-arjs": "^0.5.2",
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@mantine/core": "^5.5.5",
"@mantine/dates": "^5.5.5",
"@mantine/dropzone": "^5.5.5",
"@mantine/form": "^5.7.1",
"@mantine/hooks": "^5.5.5",
"@mantine/next": "^5.5.5",
"@mantine/notifications": "^5.5.5",
"@react-three/drei": "^9.36.0",
"@react-three/fiber": "^8.8.10",
"@react-three/postprocessing": "^2.7.0",
"@tailwindcss/line-clamp": "^0.4.2",
"aframe-react": "^4.4.0",
"axios": "^1.1.3",
"classnames": "^2.3.1",
"date-fns": "^2.29.3",
"dayjs": "^1.11.5",
"emoji-picker-react": "^4.4.2",
"fast-fuzzy": "^1.11.2",
"firebase": "^9.12.1",
"geolib": "^3.3.3",
"jest": "^29.2.1",
"mapbox-gl": "1.13.1",
"nanoid": "^4.0.0",
"next": "12.2.4",
"postprocessing": "^6.29.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.6.0",
"react-webcam": "^7.0.1",
"swr": "^1.3.0",
"three": "^0.145.0",
"valtio": "^1.7.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.0.0",
"@types/aframe": "^1.2.0",
"@types/jest": "^29.2.0",
"@types/mapbox-gl": "^2.7.6",
"@types/node": "18.7.1",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/three": "^0.144.0",
"autoprefixer": "^10.4.8",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unused-imports": "^2.0.0",
"express": "^4.18.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.2.1",
"ts-jest": "^29.0.3",
"typescript": "4.7.4"
},
"volta": {
"node": "16.16.0",
"yarn": "1.22.19"
}
}