-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.3 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
{
"repository": "#",
"name": "helicopter-physics",
"license": "UNLICENSED",
"author": "Jaroslaw",
"scripts": {
"build": "webpack --config ./bundler/webpack.prod.js",
"dev": "webpack serve --config ./bundler/webpack.dev.js",
"rome:check": "pnpm rome check .",
"rome:format": "pnpm rome format . --write"
},
"dependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"babel-loader": "^8.2.5",
"cannon-es": "^0.20.0",
"cannon-es-debugger": "^1.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"dat.gui": "^0.7.9",
"file-loader": "^6.2.0",
"gsap": "^3.11.3",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"lil-gui": "^0.17.0",
"mini-css-extract-plugin": "^2.6.0",
"portfinder-sync": "0.0.2",
"raw-loader": "^4.0.2",
"style-loader": "^3.3.1",
"three": "^0.140.0",
"three-sky": "^1.1.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"rome": "^10.0.1",
"semantic-release": "^19.0.5"
},
"lint-staged": {
"*.js": [
"pnpm run rome:format",
"git add"
]
}
}