-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.16 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": "new",
"version": "1.0.0",
"description": "It's a boiler plate for NodeJs, ExpJs with PostgreSql.",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development nodemon src/index.js",
"start:prod": "cross-env NODE_ENV=production nodemon src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"db:create": "cross-env NODE_ENV=development sequelize-cli db:create",
"db:migrate": "cross-env NODE_ENV=development sequelize-cli db:migrate",
"db:seeds": "cross-env NODE_ENV=development sequelize-cli db:seed:all",
"db:g:seed": "cross-env NODE_ENV=development sequelize-cli seed:generate --name"
},
"author": "Raju Kumar Mahato",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"http-status": "^1.7.3",
"joi": "^17.12.2",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.1",
"path": "^0.12.7",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.34.0",
"sequelize-cli": "^6.6.2"
},
"keywords": []
}