-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1012 Bytes
/
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
37
38
39
40
41
{
"name": "stovice_backend",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node -r esm src",
"dev": "nodemon --watch src/ -r esm src/index.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/2haein/stovice_backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/2haein/stovice_backend/issues"
},
"homepage": "https://github.com/2haein/stovice_backend",
"dependencies": {
"@koa/cors": "^3.1.0",
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^7.2.0",
"esm": "^3.2.25",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"koa-session": "^6.1.0",
"koa-static": "^5.0.0",
"mongoose": "^5.11.16"
},
"devDependencies": {
"eslint": "^7.20.0"
}
}