forked from martincarrera/clash-royale-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "clash-royale-api",
"main": "src/server.js",
"license": "SEE LICENSE IN LICENSE FILE",
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha tests/all.js",
"dev": "nodemon server.js",
"start": "node server.js",
"eslint": "eslint src/**/*.js public/js/**/*.js",
"precommit": "npm run eslint",
"postinstall": "node_modules/.bin/bower install"
},
"engines": {
"node": "8.6.x",
"npm": "5.3.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martincarrera/clash-royale-api.git"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.3.5",
"body-parser": "^1.15.0",
"bower": "^1.8.0",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"jsonwebtoken": "^7.0.0",
"lodash": "^4.6.1",
"mongoose": "^4.4.7",
"morgan": "^1.7.0"
},
"devDependencies": {
"coveralls": "^2.11.9",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^1.0.1",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.0.1",
"husky": "^0.11.5",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"mockgoose": "^5.3.2",
"should": "^8.3.2",
"supertest": "^1.2.0"
}
}