-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 KB
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
{
"name": "typescript-lotto",
"version": "1.0.0",
"description": "Ported version of java-lotto by woowa-techcourse",
"main": "./src/main/App.ts",
"jest": {
"verbose": true,
"preset": "ts-jest",
"testEnvironment": "node"
},
"keywords": [],
"author": "codeanddonuts",
"license": "ISC",
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node --transpile-only' ./src/main/Main.ts"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/supertest": "^2.0.8",
"fast-check": "^1.21.0",
"jest": "^24.9.0",
"moment": "^2.24.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"typescript": "^3.7.4"
},
"dependencies": {
"@types/iconv-lite": "0.0.1",
"@types/koa": "^2.11.0",
"@types/koa-compress": "^2.0.9",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.0.42",
"@types/koa-static": "^4.0.1",
"@types/node-fetch": "^2.5.4",
"apollo-server-koa": "^2.9.15",
"axios": "^0.19.1",
"graphql": "^14.5.8",
"iconv-lite": "^0.5.0",
"inversify": "^5.0.1",
"koa": "^2.11.0",
"koa-compress": "^3.0.0",
"koa-logger": "^3.2.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"mysql2": "^2.1.0",
"reflect-metadata": "^0.1.13",
"ts-jest": "^24.3.0",
"typeorm": "^0.2.22"
}
}