-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 845 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 845 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
{
"name": "study-backend",
"version": "1.0.0",
"main": "src/main.js",
"license": "MIT",
"description": "advanced web programming final project && kert study mathcing program",
"dependencies": {
"@koa/cors": "^3.2.0",
"@koa/multer": "^3.0.0",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.0",
"eslint-config-prettier": "^8.5.0",
"esm": "^3.2.25",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.1.1",
"koa-static": "^5.0.0",
"mongoose": "^6.2.6",
"multer": "^1.4.5-lts.1",
"redux-saga": "^1.1.3",
"sanitize-html": "^2.7.0"
},
"devDependencies": {
"eslint": "^8.10.0",
"nodemon": "^2.0.15"
},
"scripts": {
"start": "node -r esm src",
"start:dev": "nodemon --watch src/ -r esm src/index.js"
}
}