-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.75 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": "wooster-server",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec ts-node src/server.ts",
"start": "ts-node src/server.ts",
"drizzle:migrate": "drizzle-kit generate:migration && drizzle-kit migrate",
"drizzle:migrate:test": "drizzle-kit generate:migration --config ./drizzle.config.ts && drizzle-kit migrate --url postgres://test_user:test_password@localhost:5433/test_db",
"build": "tsc",
"serve": "node dist/index.js",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx,js,json}'",
"type-check": "tsc --noEmit",
"test": "jest"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"drizzle-kit": "^0.26.2",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"nodemon": "^3.1.5",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"dependencies": {
"@google/generative-ai": "^0.19.0",
"@supabase/supabase-js": "^2.45.4",
"@types/pg": "^8.11.10",
"axios": "^1.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.35.3",
"express": "^4.21.0",
"express-rate-limit": "^7.4.1",
"postgres": "^3.4.4",
"uuid": "^10.0.0"
}
}