-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 847 Bytes
/
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
{
"name": "ame-cubes",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"fmt": "prettier --write '**/*.{css,html,js,json,md}' --ignore-path .gitignore",
"dev": "webpack-cli serve --mode development",
"build": "webpack --mode production",
"deploy": "yarn run build && gh-pages -d dist --no-history"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^5.1.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"dat.gui": "^0.7.7",
"three": "^0.122.0"
}
}