-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.26 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
{
"name": "2122s1-backend",
"version": "1.0.0",
"description": "",
"engines": {
"node": "14.x"
},
"scripts": {
"test": "jest utils",
"stress-enqueue": "npx artillery run ./tests/stress/enqueue.yaml",
"stress-dequeue": "npx artillery run ./tests/stress/dequeue.yaml",
"start": "node ./www.js",
"dev": "nodemon ./www.js",
"start-db": "docker-compose down && docker-compose up -d --force-recreate",
"eslint": "npx eslint **/*.js",
"restart": "docker-compose down && docker-compose up -d --force-recreate && node ./www.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.1",
"cors": "^2.8.5",
"dayjs": "^1.10.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-errors": "^1.7.2",
"pg": "^8.5.1",
"shortid": "^2.2.16",
"socket.io": "^3.1.2"
},
"devDependencies": {
"@sinonjs/fake-timers": "^6.0.1",
"artillery": "^1.6.1",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
}
}