-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"version": "1.0.0",
"description": "",
"main": "./src/index.ts",
"private": "true",
"engines": {
"node": "18.*"
},
"type": "module",
"scripts": {
"test": "jest",
"start": "ts-node ./src/index.ts",
"dev": "nodemon -e ts,js --exec npm run start",
"lint": "eslint -c .eslintrc src/",
"db": "npx prisma studio",
"setup": "npx ts-node --esm ./src/setup.ts"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "29.2.4",
"@types/koa": "2.13.5",
"@types/koa__cors": "^3.3.0",
"@types/koa__router": "12.0.0",
"@types/koa-bodyparser": "4.3.10",
"@types/koa-pino-logger": "3.0.1",
"@types/node": "^20.11.20",
"@types/qrcode-terminal": "^0.12.2",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.46.0",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"jest": "29.3.1",
"nodemon": "2.0.20",
"prisma": "^5.10.2",
"supertest": "6.3.3",
"ts-jest": "29.0.3",
"ts-node": "^10.9.1",
"typescript": "4.9.4"
},
"dependencies": {
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"@prisma/client": "^5.10.2",
"colors": "^1.4.0",
"enquirer": "^2.4.1",
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
"koa-pino-logger": "^4.0.0",
"nanoid": "^5.0.6",
"qrcode-terminal": "^0.12.0"
}
}