-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 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
{
"name": "boilerplate",
"version": "1.0.0",
"description": "Project boilerplate",
"main": "index.js",
"scripts": {
"start": "node src/bin/server.js",
"test": "jest --verbose --forceExit --runInBand",
"lint": "eslint './{src,tests}/**/*.js'",
"test:unit": "jest -c ./tests/jest.config.unit.js --watchAll --verbose",
"test:integration": "jest -c ./tests/jest.config.integration.js --verbose --forceExit",
"test:e2e": "jest -c ./tests/jest.config.e2e.js --verbose --forceExit --runInBand",
"migrate": "sequelize db:migrate --config src/config/database.js --migrations-path src/database/migrations/"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testMatch": [
"**/tests/**/*.test.js"
]
},
"repository": {
"type": "git",
"url": "[email protected]:lflimeira/nodejs-boilerplate.git"
},
"author": "Luiz Felipe Limeira <@lflimeira02>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lflimeira/nodejs-boilerplate/issues"
},
"homepage": "https://github.com/lflimeira/nodejs-boilerplate#readme",
"devDependencies": {
"eslint": "4.7.2",
"eslint-config-pagarme-base": "2.0.0",
"eslint-plugin-import": "2.7.0",
"jest": "23.5.0",
"nock": "9.6.1",
"supertest": "3.0.0"
},
"dependencies": {
"body-parser": "1.18.3",
"dotenv": "6.0.0",
"escriba": "2.3.0",
"express": "4.16.3",
"joi": "13.6.0",
"log4js": "3.0.5",
"node-fetch": "2.2.0",
"pg": "7.4.3",
"ramda": "0.25.0",
"sequelize": "5.3.0",
"sequelize-cli": "4.1.1"
}
}