-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.01 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.01 KB
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
{
"name": "boardapi",
"version": "0.9.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "bun run src/index.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@supabase/supabase-js": "^2.44.4",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"express": "5.0.0",
"helmet": "^7.1.0",
"node-cron": "^3.0.3",
"pg": "^8.11.5"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bun": "^1.2.21",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.6",
"@types/supertest": "^6.0.2",
"eslint": "^9.30.1",
"jest": "^30.2.0",
"supertest": "^7.1.4",
"ts-jest": "^29.2.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}