This repository was archived by the owner on Feb 19, 2021. It is now read-only.
forked from hanbin8269/Olio_Server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.78 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.78 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "koa-ts-boilerplate",
"version": "1.0.0",
"description": "koa boilerplate using typescript",
"author": "hmoon630 <s19017@gsm.hs.kr>",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_PATH=src ts-node src/server.ts",
"dev": "cross-env NODE_PATH=src nodemon --exec ts-node src/server.ts",
"pretty": "prettier --write \"src/**/*.ts\"",
"test": "jest"
},
"dependencies": {
"@prisma/client": "^2.5.0",
"aws-sdk": "^2.792.0",
"cross-env": "^7.0.2",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"joi": "^17.2.0",
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"koa-bodyparser": "^4.3.0",
"koa-helmet": "^5.2.0",
"koa-router": "^9.4.0"
},
"devDependencies": {
"@prisma/cli": "^2.5.0",
"@types/jest": "^26.0.14",
"@types/joi": "^14.3.4",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-helmet": "^5.2.0",
"@types/koa-router": "^7.4.1",
"@types/node": "^14.6.0",
"@types/supertest": "^2.0.10",
"jest": "^26.5.3",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^5.0.0",
"ts-jest": "^26.4.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,js}",
"!**/node_modules/**",
"!**/build/**",
"!**/coverage/**"
],
"transform": {
"\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"coverageReporters": [
"text",
"text-summary"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)x?$",
"testPathIgnorePatterns": [
"/node_modules/",
"/build/",
"/coverage/"
]
}
}