-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.32 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
83
{
"name": "rosa-mini-course-backend",
"version": "0.0.1",
"description": "软香红微课管理系统",
"main": "build/main.js",
"author": "sakurafisch",
"license": "MIT",
"private": true,
"engines": {
"node": ">= 14.15 <15"
},
"devDependencies": {
"@types/config": "^0.0.36",
"@types/fs-extra": "^9.0.2",
"@types/ioredis": "^4.17.6",
"@types/jest": "~26.0.19",
"@types/koa-compress": "^4.0.1",
"@types/koa-convert": "^1.2.3",
"@types/koa-graphql": "^0.8.4",
"@types/koa-redis": "^4.0.0",
"@types/koa-response-time": "^2.1.0",
"@types/koa-router": "^7.4.2",
"@types/koa-static": "^4.0.1",
"@types/koa__cors": "^3.0.2",
"@types/koa__multer": "^2.0.2",
"@types/node": "^14.14.22",
"@types/randomstring": "^1.1.6",
"@typescript-eslint/eslint-plugin": "~4.12.0",
"@typescript-eslint/parser": "~4.12.0",
"eslint": "~7.17.0",
"eslint-config-prettier": "~7.1.0",
"eslint-plugin-jest": "~24.1.3",
"jest": "~26.6.3",
"prettier": "~2.2.1",
"rimraf": "~3.0.2",
"ts-jest": "~26.4.4",
"ts-node": "^9.1.1",
"tsutils": "~3.18.0",
"typescript": "~4.1.3"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"dev": "ts-node-dev --respawn --transpile-only src/main.ts",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/multer": "^3.0.0",
"apollo-server": "^2.19.2",
"apollo-server-koa": "^2.19.2",
"argon2": "^0.27.1",
"class-validator": "^0.13.1",
"config": "^3.3.3",
"graphql": "^15.3.0",
"graphql-upload": "^11.0.0",
"ioredis": "^4.19.4",
"koa": "^2.13.1",
"koa-compress": "^5.0.1",
"koa-redis": "^4.0.1",
"koa-response-time": "^2.1.0",
"koa-router": "^10.0.0",
"koa-session": "^6.1.0",
"multer": "^1.4.2",
"pg": "^8.5.1",
"randomstring": "^1.1.5",
"reflect-metadata": "^0.1.13",
"ts-node-dev": "^1.1.6",
"tslib": "~2.0.3",
"type-graphql": "^1.1.1",
"typedi": "0.8.0",
"typeorm": "^0.2.30",
"typeorm-typedi-extensions": "^0.4.0"
},
"volta": {
"node": "14.15.0",
"yarn": "1.22.10"
}
}