-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.3 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
{
"name": "be-the-hero_api",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"start": "pm2-runtime start ecosystem.config.js --env production",
"dev": "nodemon src/server.js",
"jest": "cross-env NODE_ENV=test ./node_modules/.bin/jest --config ./jest.config.js --runInBand --detectOpenHandles --forceExit",
"test": "yarn jest --verbose",
"test:cov": "yarn jest --coverage && node_modules/.bin/jest-badges-readme",
"lint": "node_modules/.bin/eslint src",
"sec": "node_modules/.bin/snyk test",
"sec:wizard": "node_modules/.bin/snyk wizard",
"seed": "node_modules/.bin/knex seed:run"
},
"license": "MIT",
"author": "Rafael Cascalho",
"dependencies": {
"celebrate": "^12.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-winston": "^4.0.3",
"helmet": "^3.22.0",
"knex": "^0.20.13",
"pg": "^7.18.2",
"pm2": "4.3.0",
"snyk": "^1.309.0",
"uuid": "^7.0.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@olavoparno/jest-badges-readme": "^1.4.1",
"chance": "^1.1.4",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"factory-girl": "^5.0.4",
"jest": "^25.2.3",
"jest-plugin-context": "^2.9.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}