-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.59 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
{
"private": true,
"name": "unicourse-backend",
"description": "",
"keywords": [],
"author": "UniCourse (https://github.com/UniCourse-TW)",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"version": "1.0.0-alpha.16",
"scripts": {
"start": "node dist/index.js",
"test": "jest --coverage",
"dev": "DEBUG=* tsx watch src/index.ts",
"build:all": "pnpm run -r build && pnpm db:push && tsup",
"build": "tsup",
"format": "pnpm lint:fix",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"db:push": "prisma db push --schema packages/prisma/prisma/schema.prisma",
"studio": "prisma studio --schema packages/prisma/prisma/schema.prisma"
},
"dependencies": {
"@koa/router": "^12.0.0",
"@prisma/client": "^4.5.0",
"@unicourse-tw/arborist": "workspace:*",
"@unicourse-tw/course-search": "workspace:*",
"@unicourse-tw/notify": "workspace:*",
"@unicourse-tw/prisma": "workspace:*",
"@unicourse-tw/token": "workspace:*",
"@unicourse-tw/validation": "workspace:*",
"argon2": "^0.30.1",
"course-pack": "workspace:*",
"cuid": "^2.1.8",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"unicourse": "workspace:*",
"zod": "^3.19.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@types/debug": "^4.1.7",
"@types/jest": "^28.1.8",
"@types/jsonwebtoken": "^8.5.9",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa__router": "^12.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"commander": "^9.4.1",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"node-fetch": "^3.2.10",
"ora": "^6.1.2",
"prisma": "^4.5.0",
"supports-color": "^8.1.1",
"ts-jest": "^29.0.3",
"tsup": "^6.4.0",
"tsx": "^3.11.0",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/UniCourse-TW/",
"repository": {
"type": "git",
"url": "git+https://github.com/UniCourse-TW/Backend.git"
},
"bugs": {
"url": "https://github.com/UniCourse-TW/UniCourse/issues"
}
}