generated from ahuglajbclajep/my-react-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.57 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
{
"name": "three-vrm-react-example",
"version": "1.0.0",
"description": "A simple example of react-three-fiber + three-vrm.",
"private": true,
"scripts": {
"start": "webpack-dev-server --open",
"build": "rm -rf dist && NODE_ENV=production webpack -p",
"lint:format": "prettier -cu --ignore-path .gitignore .",
"lint:ts": "eslint 'src/**/*.[tj]s{,x}'",
"lint:css": "stylelint -f verbose 'src/**'",
"deploy": "npm run build && gh-pages -d dist"
},
"dependencies": {
"@pixiv/three-vrm": "^0.3.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-three-fiber": "^4.2.20",
"three": "^0.120.0"
},
"devDependencies": {
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.8",
"@types/webpack": "^4.41.21",
"@types/webpack-dev-server": "^3.11.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"css-loader": "^4.2.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.1.1",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.1.0",
"stylelint-config-standard": "^20.0.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"prettier": {}
}