-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 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
39
40
41
42
43
{
"name": "sic-persuratan-be",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js",
"migrate:create": "npx sequelize-cli db:create",
"migrate:up": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo",
"migrate:undo:all": "npx sequelize-cli db:migrate:undo:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SIC-Unud/sic-persuratan-be.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SIC-Unud/sic-persuratan-be/issues"
},
"homepage": "https://github.com/SIC-Unud/sic-persuratan-be#readme",
"devDependencies": {
"dotenv": "^16.3.1",
"nodemon": "^3.0.1",
"sequelize-cli": "^6.6.2"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"connect-session-sequelize": "^7.1.7",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.6.3",
"sequelize": "^6.35.0",
"validate-image-type": "^3.0.0"
}
}