-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "callisto",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"lint": "yarn prettier && yarn eslint",
"eslint": "next lint --fix --dir src",
"prettier": "prettier -l \"./src/**/*.{js,jsx,md}\"",
"start": "next dev",
"dev": "next dev",
"build": "next build",
"export": "EXPORT=true next build && EXPORT=true next export",
"analyze": "ANALYZE=true next build",
"clean": "rm -rf .next out && rm -rf node_modules",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@react-three/drei": "^9.40.5",
"@react-three/fiber": "^8.8.4",
"@react-three/postprocessing": "^2.6.2",
"graphql": "^16.6.0",
"lamina": "^1.1.23",
"leva": "^0.9.34",
"maath": "^0.4.2",
"next": "^13.0.0",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-spring": "^9.5.5",
"three": "^0.144.0",
"three-stdlib": "^2.17.0",
"zustand": "^4.1.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.3.0",
"@types/three": "^0.144.0",
"autoprefixer": "^10.4.2",
"eslint": "^8.23.0",
"eslint-config-next": "^12.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-tailwindcss": "^3.6.2",
"file-loader": "^6.2.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"husky": "^8.0.1",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"r3f-perf": "^6.5.0",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.1.6",
"url-loader": "^4.1.1"
}
}