forked from ireversi/ireversi-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"name": "ireversi-server",
"version": "0.0.1",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ireversi/ireversi-server.git"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --watch src --watch swagger -e js,yml src/server.js",
"start": "node src/server.js",
"stop": "now remove ireversi",
"deploy": "now && now alias",
"scale": "now scale ireversi.now.sh 1",
"lint": "eslint src tests --fix",
"test": "cross-env NODE_ENV=test jest --coverage",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"coverage": "codecov"
},
"author": "m-mitsuhide <m.mitsuhide@amatelus.com>",
"license": "MIT",
"dependencies": {
"dotenv": "6.0.0",
"express": "4.16.3",
"hashids": "1.1.4",
"klaw-sync": "4.0.0",
"moment": "2.22.2",
"mongodb": "3.1.3",
"mongodb-memory-server": "2.0.1",
"mongoose": "5.2.9",
"swagger-jsdoc": "3.0.2",
"swagger-ui-express": "3.0.10"
},
"devDependencies": {
"chai": "4.1.2",
"chai-http": "4.0.0",
"codecov": "3.0.4",
"cross-env": "5.2.0",
"eslint": "5.4.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"jest": "23.5.0",
"nodemon": "1.18.3"
}
}