forked from step-8/scotland-yard-byomkesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "scotland-yard-byomkesh",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha --recursive",
"test-c": "c8 -r html mocha --recursive; sleep 2; open coverage/index.html",
"test-w": "mocha -w --recursive",
"setup": "bash setup.sh",
"start-w": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/step-8/scotland-yard-byomkesh.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/step-8/scotland-yard-byomkesh/issues"
},
"homepage": "https://github.com/step-8/scotland-yard-byomkesh#readme",
"devDependencies": {
"c8": "^7.12.0",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"sinon": "^14.0.0",
"supertest": "^6.2.4"
},
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"morgan": "^1.10.0",
"redis": "^4.2.0"
},
"directories": {
"test": "test"
},
"description": ""
}