-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "graphlinq-network-api",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon --watch src --exec ts-node src/server.ts",
"build": "tsc -p . && NODE_ENV=production webpack --config webpack.config.js",
"start": "yarn build && ASSETS_DIR=dist/public NODE_ENV=production node dist/server.js"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"axios": "^1.7.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"leaflet": "^1.9.4",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@types/ws": "^8.5.12",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.2",
"html-webpack-plugin": "^5.6.4",
"javascript-obfuscator": "^4.1.1",
"mini-css-extract-plugin": "^2.9.4",
"nodemon": "^3.1.4",
"terser-webpack-plugin": "^5.3.14",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-obfuscator": "^3.5.1"
}
}