-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "stack_lite",
"version": "1.0.0",
"description": "StackOverflow-lite is a platform where people can ask questions and provide answers.",
"main": "server.js",
"scripts": {
"devStart": "nodemon server.js",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text --reporter=text-summary mocha \"./test/**/*.js\" --timeout 12000 --exit",
"migrateup": "sequelize db:migrate",
"migratedown": "sequelize db:migrate:undo:all",
"pretest": "NODE_ENV=test npm run migratedown && NODE_ENV=test npm run migrateup"
},
"author": "tolu sola-adeyemi",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"chai-http": "^4.3.0",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"joi": "^17.6.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"nyc": "^15.1.0",
"sequelize": "^6.21.6",
"supertest": "^6.2.4",
"throng": "^5.0.0"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.20"
}
}