-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "Team_iOS_1_Backend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/YAPP-16th/Team_iOS_1_Backend.git",
"description": "YAPP 16기 iOS 1팀",
"author": "SimJunSik <[email protected]>",
"license": "MIT",
"scripts": {
"start": "nodemon --exec ts-node src/index.ts",
"dev": "cross-env NODE_ENV=develop nodemon src/index.ts",
"prod": "cross-env NODE_ENV=prod node dist/index.js",
"build": "tsc -p .",
"test": "exit"
},
"dependencies": {
"cross-env": "^7.0.0",
"dotenv": "^8.2.0",
"google-auth-library": "^6.0.0",
"joi": "^14.3.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-morgan": "^1.0.1",
"koa-router": "^8.0.8",
"koa2-swagger-ui": "^2.16.0",
"mongoose": "^5.9.1",
"request": "^2.88.2",
"swagger-jsdoc": "^3.5.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@types/joi": "^14.3.4",
"@types/koa": "^2.11.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-morgan": "^1.0.4",
"@types/koa-router": "^7.4.0",
"@types/mongoose": "^5.7.1",
"@types/node": "^13.7.1",
"@types/request": "^2.48.4",
"@types/swagger-jsdoc": "^3.0.2",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}