-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
{
"name": "server",
"version": "1.0.0",
"description": "Webshop server",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"test": "jest"
},
"keywords": [],
"author": "Zhiyuan",
"license": "ISC",
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"dependencies": {
"bcrypt": "^5.0.0",
"chalk": "^4.1.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.2",
"jsonwebtoken": "^8.5.1",
"kcors": "^2.2.2",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-multer": "^1.0.2",
"koa-router": "^9.1.0",
"pagination-apis": "^1.0.8",
"pg": "^7.18.2",
"reflect-metadata": "^0.1.10",
"routing-controllers": "^0.9.0-alpha.4",
"typedi": "^0.8.0",
"typeorm": "0.2.25",
"typeorm-typedi-extensions": "^0.2.3",
"vesper": "^0.1.9"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/jest": "^26.0.14",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-multer": "^1.0.0",
"@types/koa-router": "^7.4.1",
"@types/node": "^8.0.29",
"@types/superagent": "^4.1.10",
"@types/supertest": "^2.0.10",
"jest": "^26.4.2",
"superagent": "^6.1.0",
"supertest": "^5.0.0",
"ts-jest": "^26.4.1",
"ts-node": "3.3.0",
"typescript": "^4.0.3"
}
}