-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
36 lines (36 loc) · 919 Bytes
/
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
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development node app.js",
"dev": "NODE_ENV=development nodemon app.js",
"test": "NODE_ENV=test mocha test/*/*.js --exit --recursive --timeout 5000"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"connect-flash": "^0.1.1",
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"faker": "^4.1.0",
"method-override": "^3.0.0",
"mocha": "^6.0.2",
"mysql2": "^1.6.4",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"sequelize": "^4.42.0",
"sequelize-cli": "^5.5.0",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0"
},
"devDependencies": {
"sequelize-test-helpers": "^1.0.7",
"supertest": "^3.3.0"
}
}