-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "nodejs-sample",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run db-migrate-up && node index.js",
"test": "mocha './test/**/*.spec.js'",
"create-db": "node ./scripts/create-db.js",
"db-migrate-create": "sequelize migration:create --name [new_migration_name]",
"db-migrate-up": "sequelize db:migrate",
"db-migrate-down": "sequelize db:migrate:undo",
"db-migrate-down-all": "sequelize db:migrate:undo:all"
},
"author": "Computools Software",
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4",
"chai-http": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"prettier": "^1.12.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-validator": "^5.3.1",
"lodash": "^4.17.11",
"morgan": "^1.9.1",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.8.7",
"sequelize-cli": "^5.4.0"
}
}