-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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": "sequelize",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "nodemon index.js",
"migrate": "sequelize db:migrate --debug",
"undomigrate": "sequelize db:migrate:undo --debug",
"seed": "node seeder.js",
"update-db": "node dbUpdater.js",
"start": "node index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apicache": "^1.6.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"fast-json-patch": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"lorem-ipsum": "^2.0.4",
"method-override": "^3.0.0",
"mysql2": "^2.3.0",
"node-google-drive": "^1.1.2",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.5"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"nodemon": "^2.0.12",
"sequelize-cli": "^6.2.0"
}
}