-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "racetrack",
"version": "1.0.0",
"description": "Websocket using Node.js",
"main": "index.js",
"scripts": {
"test": "ENV='TEST' jest --coverage --forceExit && jest-coverage-badges",
"test:watch": "npm run test -- --watch",
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typeforslack/RaceTrack.git"
},
"author": "Sanjay",
"license": "ISC",
"bugs": {
"url": "https://github.com/typeforslack/RaceTrack/issues"
},
"homepage": "https://github.com/typeforslack/RaceTrack#readme",
"dependencies": {
"axios": "^0.19.2",
"bull": "^3.14.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-redis-scan": "^1.1.1",
"redis": "^3.0.2",
"socket.io": "^2.3.0",
"uuid": "^8.1.0"
},
"devDependencies": {
"jest": "^26.0.1",
"jest-coverage-badges": "^1.1.2",
"nodemon": "^2.0.4",
"redis-mock": "^0.49.0"
},
"jest": {
"coverageReporters": [
"json-summary",
"text",
"lcov"
]
}
}