-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 959 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
37
38
{
"name": "google-oauth-scratch",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js",
"migrate:run": "npx sequelize-cli db:migrate",
"migrate:rollback": "npx sequelize-cli db:migrate:undo",
"migrate:rollback:all": "npx sequelize-cli db:migrate:undo:all",
"git:commit": "cz"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"redis": "^4.1.0",
"sequelize": "^6.19.2",
"sequelize-cli": "^6.4.1"
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"nodemon": "^2.0.16"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}