-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "online-thrift-store",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "nodemon ./bin/www",
"test": "cross-env NODE_ENV=test jest",
"watch-test": "npm run test -- --watchAll",
"db:migrate:test": "cross-env NODE_ENV=test npx sequelize-cli db:migrate",
"db:migrate:undo:test": "cross-env NODE_ENV=test npx sequelize-cli db:migrate:undo:all"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"bcrypt": "^5.0.0",
"bootstrap": "^4.5.3",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "~2.6.1",
"express": "~4.16.1",
"express-session": "^1.17.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"sequelize": "^6.3.5",
"sqlite3": "^5.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"supertest": "^6.0.1"
}
}