-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "acquire-poirot",
"version": "1.0.0",
"description": "Acquire multiplayer game",
"main": "index.js",
"scripts": {
"test": "mocha test --recursive",
"start": "node .",
"dev-setup": "bash bin/dev_setup.sh",
"setup": "bash bin/app_setup.sh",
"lint": "eslint .",
"rec-test": "mocha -w test --recursive",
"coverage": "nyc --reporter=html npm test && open coverage/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/step-8/acquire-poirot.git"
},
"keywords": [
"acquire",
"shares",
"stock",
"stock-market",
"corporation",
"money",
"profit",
"game"
],
"author": "poirot-team",
"license": "ISC",
"bugs": {
"url": "https://github.com/step-8/acquire-poirot/issues"
},
"homepage": "https://github.com/step-8/acquire-poirot#readme",
"devDependencies": {
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"nyc": "^15.1.0",
"supertest": "^6.2.4"
},
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"redis": "^4.3.0",
"serve-favicon": "^2.5.0",
"sinon": "^14.0.0"
}
}