This repository has been archived by the owner on Oct 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.89 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc --build",
"dev": "ts-node-dev src/index.ts",
"start": "ts-node --transpile-only src/index.ts",
"test": "NODE_ENV=test PORT=7788 jest",
"test:watch": "npm run test -- --watchAll"
},
"dependencies": {
"dotenv": "^10.0.0",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-combine-routers": "^4.0.2",
"koa-json": "^2.0.2",
"koa-jwt": "^4.0.1",
"koa-logger": "^3.2.1",
"koa-router": "^10.0.0",
"koa2-cors": "^2.0.6",
"mongodb-memory-server": "^6.9.6",
"mongoose": "^5.12.12",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/jsonwebtoken": "^8.5.1",
"@types/koa": "^2.13.2",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.2",
"@types/koa2-cors": "^2.0.1",
"@types/mongodb-memory-server": "^2.3.0",
"@types/node": "^15.6.1",
"@types/supertest": "^2.0.11",
"jest": "^27.0.1",
"supertest": "^6.1.3",
"ts-jest": "^27.0.1",
"ts-node-dev": "^1.1.6"
},
"keywords": [],
"author": "Andromeda",
"license": "ISC",
"config": {
"mongodbMemoryServer": {
"debug": "0"
}
},
"jest": {
"testTimeout": 1000000,
"verbose": true,
"collectCoverage": true,
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"roots": [
"<rootDir>/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
],
"testRegex": "(^(.*).*spec\\.ts.*$)",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}