-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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": "pokemon-backend",
"version": "1.0.0",
"description": "Back-End for the Pokémon board game helper",
"main": "index.js",
"scripts": {
"test": "mocha --config test/configs/.mocharc.js",
"test:unit": "mocha --config test/configs/.mocharc.unit.js",
"test:integration": "mocha --config test/configs/.mocharc.integration.js",
"lint": "eslint . --ignore-pattern reports",
"lint:fix": "eslint . --fix --ignore-pattern reports",
"report:coverage": "nyc npm run test",
"report:complexity": "./node_modules/.bin/es6-plato --recurse --eslint ./.eslintrc.json --dir ./reports/complexity src",
"report": "npm run report:coverage && npm run report:complexity"
},
"keywords": [
"Pokémon",
"Board",
"Game",
"Helper",
"Back-End"
],
"author": "Felipe Trevisan",
"license": "ISC",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"expect": "^26.0.1",
"express": "^4.17.1",
"got": "^11.3.0",
"helmet": "^3.21.3",
"joi-to-swagger": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.3",
"swagger-jsdoc": "^3.5.0",
"swagger-ui-express": "^4.1.3",
"uuid": "^7.0.2",
"winston": "^3.2.1",
"winston-logsene": "^2.0.8"
},
"devDependencies": {
"es6-plato": "^1.2.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"faker": "^4.1.0",
"husky": "^4.2.3",
"mocha": "^7.2.0",
"mongodb-memory-server": "^6.6.1",
"nyc": "^15.1.0",
"supertest": "^4.0.2"
},
"husky": {
"hooks": {
"pre-push": "npm test && npm run lint"
}
}
}