-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.09 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.09 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "invern-be",
"type": "module",
"version": "1.0.0",
"description": "Invern Spirit Backend",
"main": "functions/index.ts",
"scripts": {
"init": "node ./scripts/init.js",
"start": "node ./scripts/start.js",
"test": "jest --coverage --passWithNoTests",
"lint": "eslint functions/** libs/**",
"lint:fix": "eslint functions/** libs/** --fix",
"build-remote-db": "wrangler d1 create invern-db-preview --location weur",
"build-preview-db": "wrangler d1 create invern-db-preview --location weur",
"query-local": "wrangler d1 execute invern-db --local --command",
"query-preview": "wrangler d1 execute invern-db --remote --command",
"db:migrate:local": "wrangler d1 migrations apply invern-db --local",
"db:migrate:remote": "wrangler d1 migrations apply invern-db --remote",
"prepare": "husky",
"db:generate": "drizzle-kit generate",
"type-check": "tsc --noEmit",
"docs": "http-server ./ -p 8081 -S -c-1 -C ./docs/cert.pem -K docs/key.pem --cors"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@asteasolutions/zod-to-openapi": "^8.1.0",
"@cloudflare/workers-types": "^4.20240419.0",
"@eslint/js": "^9.2.0",
"@types/cookie": "^0.6.0",
"@types/jest": "^30.0.0",
"@types/stripe-v3": "^3.1.33",
"@types/uuid": "^10.0.0",
"drizzle-kit": "^0.31.4",
"eslint": "^9.23.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.31.0",
"globals": "^16.4.0",
"http-server": "^14.1.1",
"husky": "^9.0.11",
"jest": "^30.1.3",
"prettier": "^3.2.5",
"swagger-ui-dist": "^5.20.5",
"ts-jest": "^29.1.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.29.0",
"wrangler": "^4.40.0"
},
"dependencies": {
"@cloudflare/pages-plugin-honeycomb": "^1.0.4",
"@libsql/client": "^0.15.15",
"@tsndr/cloudflare-worker-jwt": "^3.2.0",
"cookie": "^1.0.2",
"drizzle-orm": "^0.44.5",
"drizzle-zod": "^0.8.3",
"query-string": "^9.3.0",
"stripe": "^18.5.0",
"worker-auth-providers": "^0.0.14",
"zod": "^4.1.8"
}
}