-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 KB
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": "flexcms",
"version": "1.0.0",
"description": "web cms",
"main": "server.js",
"repository": "https://github.com/fadilkun45/flexcms.git",
"author": "Satria APN <satrianusa10@gmail.com>",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.3",
"nanoid": "^3.1.25",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.5"
},
"scripts": {
"start-prod": "node dist/server.js",
"build": "tsc -w",
"install-views": "npm install views/",
"db-create": "sequelize db:create",
"db-migrate-status": "sequelize db:migrate:status",
"db-migrate-up": "sequelize db:migrate",
"db-migrate-down": "sequelize db:migrate:undo",
"db-migrate-down-all": "sequelize db:migrate:undo:all",
"db-migrate-redo": "npm run migrate-down && npm run migrate-up",
"db-migrate-redo-all": "npm run migrate-down-all && npm run migrate-up"
},
"devDependencies": {
"sequelize-cli": "^6.2.0"
}
}