-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.85 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
{
"name": "voxel-blox",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "yarn decrypt && next dev",
"build": "next build",
"build:production": "yarn decrypt && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"up-latest": "yarn upgrade-interactive --latest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install",
"encrypt": "npx cryptify encrypt ./public/models/shadow/shadow.mtl ./public/models/shadow/shadow.obj ./public/models/vivi/vivi.mtl ./public/models/vivi/vivi.obj ./public/models/soldier/soldier.mtl ./public/models/soldier/soldier.obj ./public/models/moogle/moogle.mtl ./public/models/moogle/moogle.obj -p $SECRET_KEY",
"decrypt": "npx cryptify decrypt ./public/models/shadow/shadow.mtl ./public/models/shadow/shadow.obj ./public/models/vivi/vivi.mtl ./public/models/vivi/vivi.obj ./public/models/soldier/soldier.mtl ./public/models/soldier/soldier.obj ./public/models/moogle/moogle.mtl ./public/models/moogle/moogle.obj -p $SECRET_KEY"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.2",
"@emotion/cache": "^11.6.0",
"@emotion/react": "^11.7.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@fontsource/lexend": "^4.5.1",
"@react-three/drei": "^9.92.1",
"@react-three/fiber": "^7.0.24",
"@react-three/postprocessing": "^2.0.5",
"@types/three": "^0.135.0",
"framer-motion": "^4.1.17",
"leva": "^0.9.18",
"next": "^12.2.5",
"next-transpile-modules": "^4.1.0",
"polished": "^4.1.3",
"react": "^18",
"react-dom": "^18",
"three": "^0.135.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^14.1.0",
"@netlify/plugin-nextjs": "^4.1.0",
"@types/node": "^14.6.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"commitlint": "^14.1.0",
"cryptify": "^4.1.2",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"next-image-loader": "^2.0.6",
"prettier": "^2.5.0",
"standard-version": "^9.3.2",
"typescript": "^4.5.2"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}