forked from ai297/rs-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.34 KB
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
{
"name": "epic-spell-wars",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node dist/app.js",
"build": "webpack --config config/webpack.server.js && webpack --config config/webpack.prod.js",
"dev-server": "cross-env PUBLIC_PATH=../../public nodemon src/server/index.ts",
"dev-client": "webpack serve --config config/webpack.dev.js"
},
"dependencies": {
"express": "5.0.1",
"path": "0.12.7",
"socket.io": "4.8.1",
"socket.io-client": "4.8.1",
"webpack-merge": "6.0.1",
"dotenv": "16.4.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kylichist/esw2g.git"
},
"devDependencies": {
"@types/express": "5.0.0",
"@types/node": "22.10.7",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "12.0.2",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"html-webpack-plugin": "5.6.3",
"mini-css-extract-plugin": "2.9.2",
"nodemon": "3.1.9",
"sass": "1.83.4",
"sass-loader": "16.0.4",
"ts-loader": "9.5.2",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"webpack": "5.97.1",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0",
"webpack-node-externals": "3.0.0"
}
}