-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "hackhour",
"version": "3.0.0",
"description": "",
"scripts": {
"prisma_deploy": "prisma migrate deploy && prisma generate",
"debug": "npm run prisma_deploy && tsx ./src/entry.ts",
"debug_reset": "prisma migrate reset",
"start": "npm run prisma_deploy && tsx ./src/entry.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techpixel/hackhour.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/techpixel/hackhour/issues"
},
"homepage": "https://github.com/techpixel/hackhour#readme",
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^5.17.0",
"@slack/bolt": "^3.17.1",
"airtable": "^0.12.2",
"async-lock": "^1.4.1",
"body-parser": "^1.20.2",
"bottleneck": "^2.19.5",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"get-urls": "^12.1.0",
"lowdb": "^7.0.1",
"prisma": "^5.17.0",
"prisma-json-types-generator": "^3.0.4",
"tsx": "^4.10.5",
"ws": "^8.17.0",
"yaml": "^2.4.2"
},
"type": "module",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/async-lock": "^1.4.2",
"@types/express": "^4.17.21",
"@types/lowdb": "^1.0.15",
"@types/node": "^20.12.7",
"@types/ws": "^8.5.10",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
}
}