-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
43
{
"name": "rest-api-starter-kit",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "cross-env NODE_ENV=development nodemon --exec babel-node src/index.js",
"start": "cross-env NODE_ENV=production babel-node src/index.js",
"db:migrate": "sequelize --config src/config/database.js db:migrate",
"db:seed": "sequelize --config src/config/database.js db:seed:all"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"sequelize": "^6.33.0"
},
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/node": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/register": "^7.22.15",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-root-import": "^6.6.0",
"cross-env": "^7.0.3",
"nodemon": "^3.0.1",
"sequelize-cli": "^6.6.1"
},
"overrides": {
"babel-plugin-module-resolver": {
"find-babel-config": {
"json5": "2.2.2"
}
}
}
}