-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "curso-dbtraning",
"version": "1.0.0",
"description": "Construir uma aplicação testável",
"main": "index.js",
"scripts": {
"test:unit": "NODE_ENV=test mocha --opts test/unit/mocha.opts test/unit/**/*.spec.js",
"test:integration": "NODE_ENV=test mocha --opts test/integration/mocha.opts test/integration/**/*.spec.js",
"sequelize": "sequelize"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dariano/curso-node-dbtraining.git"
},
"keywords": [
"node",
"express",
"mocha",
"chai",
"suportest"
],
"author": "dariano",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dariano/curso-node-dbtraining/issues"
},
"homepage": "https://github.com/Dariano/curso-node-dbtraining#readme",
"devDependencies": {
"bcrypt": "^1.0.3",
"chai": "^4.1.2",
"jwt-simple": "^0.5.1",
"mocha": "^4.0.1",
"sequelize-cli": "^3.0.0",
"sinon": "^4.1.1",
"supertest": "^3.0.0"
},
"dependencies": {
"body-parser": "^1.18.2",
"consign": "^0.1.6",
"express": "^4.16.2",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"sequelize": "^4.22.5",
"sqlite3": "^3.1.13"
}
}