-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·37 lines (37 loc) · 987 Bytes
/
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
{
"name": "presence-nodejs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prisma_gen": "prisma generate",
"prisma_push": "prisma db push",
"start": "ts-node index.ts",
"startprod": "npm run prisma_push && npm run prisma_gen && npm run start ",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@koa/router": "^12.0.0",
"@prisma/client": "^4.14.0",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.0",
"koa-ejs": "^4.3.0",
"koa-session": "^6.4.0",
"rpio": "^2.4.2",
"serialport": "^11.0.0",
"totp-generator": "^0.0.14"
},
"devDependencies": {
"@types/koa__router": "^12.0.0",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-ejs": "^4.3.0",
"@types/koa-session": "^6.4.1",
"@types/node": "^20.1.3",
"@types/rpio": "^2.4.2",
"prisma": "^4.14.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}