-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.78 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
{
"name": "light",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "set NODE_ENV=development && next dev",
"build": "next build && next export",
"deploy": "next build && next export && touch out/.nojekyll && git add -f out/ && git commit -m \"Deploy\" && git push origin :gh-pages && git subtree push --prefix out origin gh-pages && git reset HEAD~1",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "echo No tests found.",
"format": "prettier --write --ignore-path=.gitignore .",
"format:check": "prettier --check --ignore-path=.gitignore .",
"prepare": "husky install"
},
"dependencies": {
"@hookstate/core": "^4.0.0-rc21",
"@react-spring/three": "^9.4.5",
"@react-three/drei": "^9.16.0",
"@react-three/fiber": "^8.0.27",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"honeycomb-grid": "^3.1.8",
"leva": "^0.9.29",
"lodash": "^4.17.21",
"next": "12.2.3",
"r3f-perf": "^6.4.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.0.0",
"simplex-noise": "^3.0.1",
"three": "0.140.2",
"three-stdlib": "^2.12.1"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/node": "18.0.1",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/three": "^0.141.0",
"eslint": "8.19.0",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "^8.0.0",
"husky": ">=7",
"lint-staged": ">=10",
"prettier": "^2.0.0",
"typescript": "4.7.4"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}