-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.15 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
{
"name": "clashroyaleapi",
"version": "1.0.0",
"main": "bin/www",
"description": "An API to provide Clash Royale statistics.",
"scripts": {
"start": "node .",
"dev": "npx nodemon . --inspect",
"dbon": "mongod",
"dboff": "killall mongod"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint",
"pretty-quick — staged",
"git add"
]
},
"author": "Kamaal",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"mongoose": "^5.7.1",
"morgan": "^1.9.1",
"superagent": "^5.1.0"
},
"devDependencies": {
"eslint": "^6.4.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"nodemon": "^1.19.2",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/kamaal111/clashroyaleapi.git"
},
"bugs": {
"url": "https://github.com/kamaal111/clashroyaleapi/issues"
},
"homepage": "https://github.com/kamaal111/clashroyaleapi#readme"
}