-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.03 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
{
"name": "crypto-crate",
"version": "0.1.0",
"private": true,
"sideEffects": false,
"scripts": {
"preprocess": "node scripts/preprocess.js",
"dev": "next dev",
"build": "next build",
"analyze": "cross-env ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"styelint": "npx stylelint \"**/*.{css,scss}\"",
"format": "prettier --write \"**/*.{js,ts,tsx,css,scss,svg,xml}\"",
"check-type": "tsc --pretty",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@react-three/fiber": "^7.0.6",
"@react-three/postprocessing": "^2.0.5",
"glslify-loader": "^2.0.0",
"is-ci": "^3.0.0",
"next": "^12.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"react": "^18.0.0-beta-24dd07bd2-20211208",
"react-dom": "^18.0.0-beta-24dd07bd2-20211208",
"sass": "^1.39.0",
"string-replace-loader": "^3.0.3",
"stylelint": "^13.13.1",
"stylelint-scss": "^3.20.1",
"three": "^0.132.2",
"three-custom-shader-material": "^3.3.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^11.1.2",
"@prettier/plugin-xml": "^1.1.0",
"@types/react": "17.0.20",
"@types/three": "^0.131.0",
"@yushijinhun/three-minifier-webpack": "^0.3.0",
"cross-env": "^7.0.3",
"css-modules-typescript-generator": "^1.0.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"gltf-pipeline": "^3.0.4",
"husky": "^7.0.0",
"jsonminify": "^0.4.2",
"lint-staged": "^11.1.2",
"stylelint-config-css-modules": "^2.3.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-webpack-plugin": "^3.0.1",
"three-minify-shaderchunk": "^1.0.1",
"typescript": "4.4.2",
"webpack-stats-plugin": "^1.0.3",
"worker-loader": "^3.0.8"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}