-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "websockets-socket.io",
"version": "1.0.0",
"engines": {
"node": "v16.13.1"
},
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"buildup:compose": "npm run build && docker-compose up -d --force-recreate --build",
"start": "node build/serve.js",
"dev": "./dev_start.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"babel-loader": "^8.2.2",
"body-parser": "^1.19.0",
"cookie-parse": "^0.4.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"express": "^4.17.1",
"got": "^11.8.2",
"jsonwebtoken": "^8.5.1",
"node-cron": "^3.0.0",
"socket.io": "^4.5.0",
"uuid": "^8.3.2",
"validator": "^13.6.0",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0",
"webpack-node-externals": "^2.5.2"
},
"devDependencies": {
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0"
}
}