-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "backend",
"version": "1.0.0",
"sideEffects": [
"*.css"
],
"description": "",
"main": "index.js",
"engines": {
"node": "17.9.x"
},
"scripts": {
"start": "node server.js",
"dev": "MODE=dev npm-run-all -p fe:watch:dev be:start",
"fe:watch": "webpack --watch",
"fe:watch:dev": "webpack --watch --env mode=dev",
"be:start": "nodemon server.js --watch server.js",
"build": "webpack --mode production",
"build:dev": "webpack --env mode=dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.17.10",
"babel-loader": "^8.2.5",
"bufferutil": "^4.0.6",
"cannon-es": "^0.19.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"express": "^4.18.1",
"gsap": "^3.10.4",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"mathjs": "^10.5.1",
"mini-css-extract-plugin": "^2.6.0",
"three": "^0.140.0",
"three-to-cannon": "^4.1.0",
"utf-8-validate": "^5.0.9",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"ws": "^8.6.0"
},
"devDependencies": {
"cannon-es-debugger": "^1.0.0",
"connect-livereload": "^0.6.1",
"lil-gui": "^0.16.1",
"livereload": "^0.9.3",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"webpack-dev-server": "^4.9.0"
}
}