-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.57 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
{
"name": "polycade_rest_api",
"version": "1.0.0",
"description": "challenge rest api ",
"main": "./src/index.js",
"author": "webdev778",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"pg": "^7.18.2",
"pluralize": "^8.0.0"
},
"scripts": {
"start": "nodemon --watch ./src --exec babel-node ./src/index.js",
"watch:test": "npm t -- -w",
"test": "mocha --recursive --require @babel/register --exit",
"cover": "nyc npm t",
"report": "codecov -f ./coverage/lcov.info",
"build": "babel src -D -d dist --delete-dir-on-start"
},
"husky": {
"hooks": {
"pre-commit": "npm t",
"pre-push": "npm t"
}
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"core-js": "^3.6.4",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ghooks": "^2.0.4",
"git-cz": "^4.3.1",
"husky": "^4.2.3",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"should": "^13.2.3",
"supertest": "^4.0.2"
}
}