-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "daily-rise-api",
"version": "1.0.0",
"author": "Jean-Baptiste Terrazzoni <[email protected]>",
"type": "module",
"engines": {
"node": "20.12.x"
},
"scripts": {
"build": "swc-compile",
"start": "node dist/index.js",
"start-dev": "swc-watch",
"test": "jest",
"lint-type": "tsc --noEmit",
"lint-code": "eslint .",
"lint-style": "prettier ."
},
"devDependencies": {
"@jterrazz/package-typescript": "1.7.0",
"@jterrazz/package-typescript-quality": "1.3.0",
"@jterrazz/package-typescript-test": "^1.2.1",
"@types/config": "^3.3.0",
"@types/koa": "^2.13.6",
"@types/koa-router": "^7.4.4",
"@types/node": "^20"
},
"dependencies": {
"@prisma/client": "4.16.1",
"config": "^3.3.6",
"http-status-codes": "^2.1.4",
"inversify": "^6.0.2",
"koa": "^2.14.2",
"koa-router": "^12.0.0",
"prisma": "^4.16.1",
"reflect-metadata": "^0.2.2",
"winston": "^3.9.0",
"zod": "^3.21.4"
}
}