-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 981 Bytes
/
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
{
"name": "acquire-tycoons",
"version": "1.0.0",
"description": "To make acquire game in web.",
"main": "server.js",
"scripts": {
"test": "nyc mocha --recursive",
"coverage": "nyc check-coverage",
"start": "node server.js",
"lint": "./node_modules/.bin/eslint .",
"fix": "./node_modules/.bin/eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/STEP-tw/acquire-tycoons.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/STEP-tw/acquire-tycoons/issues"
},
"homepage": "https://github.com/STEP-tw/acquire-tycoons#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.13.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"sinon": "^7.2.4",
"supertest": "^3.4.2"
},
"dependencies": {
"cookie-parser": "^1.4.4",
"ejs": "^2.6.1",
"express": "^4.16.4",
"lodash": "^4.17.11",
"morgan": "^1.9.1"
}
}