-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "int-server",
"version": "1.0.0",
"description": "Int project api server",
"main": "index.js",
"scripts": {
"gen-env": "gen-env-types .env -o src/env.d.ts -e .",
"dev": "nodemon --exec ts-node ./src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YunhwanJung/int-server.git"
},
"author": "yunhwanjung",
"license": "ISC",
"bugs": {
"url": "https://github.com/YunhwanJung/int-server/issues"
},
"homepage": "https://github.com/YunhwanJung/int-server#readme",
"dependencies": {
"@koa/router": "^9.4.0",
"apollo-server-koa": "^2.17.0",
"bcrypt": "^5.0.0",
"class-validator": "^0.12.2",
"dotenv-safe": "^8.2.0",
"graphql": "^15.3.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"mysql2": "^2.1.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.0.0",
"typeorm": "^0.2.26",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "^2.11.4",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-logger": "^3.1.1",
"@types/koa__router": "^8.0.2",
"@types/node": "^14.6.4",
"@types/uuid": "^8.3.0",
"gen-env-types": "^1.0.4",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}