-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "100-thai-flag-game-api",
"version": "1.0.0",
"description": "Backend for 100 Thai flag game.",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"start": "nodemon src/server.js -r . --exec babel-node --presets es2015,stage-2",
"serve": "babel-node --presets es2015,stage-2 server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PNNutkung/100-thai-flag-game-api.git"
},
"keywords": [
"game",
"thai",
"thailand",
"flag"
],
"author": "PNNutkung",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/PNNutkung/100-thai-flag-game-api/issues"
},
"homepage": "https://github.com/PNNutkung/100-thai-flag-game-api#readme",
"dependencies": {
"async": "^2.1.4",
"body-parser": "^1.15.2",
"chalk": "^2.1.0",
"express": "^4.14.0",
"file-stream-rotator": "^0.0.7",
"jsonwebtoken": "^7.2.1",
"morgan": "^1.7.0",
"rethinkdb": "^2.3.3"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --no-semi --space-before-function-paren --write",
"eslint --fix",
"git add -A"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"prettier": "^1.7.4",
"prettier-eslint": "^8.2.0",
"prettier-miscellaneous": "^1.5.3"
}
}