-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 876 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 876 Bytes
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
{
"name": "modawn-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "nodemon server.js",
"start:prod": "node server.js",
"apidoc:build": "apidoc -c apidoc/apidoc.json -i apidoc/ -o apidocDist/",
"apidoc:start": "npm run apidoc:build && http-server ./apidocDist/ -p 9000"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1425.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "2.10.0",
"mysql2": "^3.5.1",
"path": "^0.12.7",
"sequelize": "^6.32.1"
},
"devDependencies": {
"apidoc": "^1.1.0",
"nodemon": "^3.0.0",
"sequelize-cli": "^6.6.1"
}
}