-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "seubarriga",
"version": "1.0.0",
"description": "Criando uma API REST aplicando TDD desde o princípio",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=prod node src/server.js",
"test": "cross-env NODE_ENV=test jest --runInBand --verbose=true --forceExit --collectCoverage=true",
"lint": "eslint src/** test/** --fix",
"jest:secure": "cross-env NODE_ENV=test jest --watchAll --verbose=true --runInBand",
"migrate:latest": "node_modules/.bin/knex migrate:latest --env test",
"migrate:rollback": "node_modules/.bin/knex migrate:rollback --env test"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"babel-jest": "^27.3.1",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"jest": "^27.3.1",
"jest-extended": "^0.11.5",
"supertest": "^3.3.0"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.18.3",
"consign": "0.1.6",
"cors": "2.8.5",
"cross-env": "5.2.0",
"dotenv": "^10.0.0",
"express": "^4.16.4",
"jwt-simple": "0.5.5",
"knex": "0.21.1",
"moment": "2.22.2",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pg": "8.0.3",
"uuidv4": "2.0.0",
"winston": "3.1.0"
}
}