-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.53 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development tsx watch src/main.ts",
"build": "tsc",
"start": "node dist/main.js",
"generate": "drizzle-kit generate",
"pull": "drizzle-kit introspect",
"studio": "drizzle-kit studio --port 3333",
"migrate": "tsx src/db/migrate",
"util": "tsx src/db/util/run",
"push": "drizzle-kit push",
"kit": "drizzle-kit",
"tsx": "./src/main.ts --watch",
"lint": "eslint . --fix && prettier --cache --write ."
},
"dependencies": {
"@paralleldrive/cuid2": "^3.3.0",
"axios": "^1.17.0",
"cookie-parser": "^1.4.7",
"cron": "^4.4.0",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"express": "^5.2.1",
"garph": "^0.6.8",
"graphql": "^16.14.1",
"graphql-yoga": "^5.21.1",
"helmet": "^8.2.0",
"jsonwebtoken": "^9.0.3",
"lodash": "^4.18.1",
"node-cache": "^5.1.2",
"oslo": "^1.2.1",
"pg": "^8.21.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/lodash": "^4.17.24",
"@types/node": "^25.9.2",
"@types/pg": "^8.20.0",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"cross-env": "10.1.0",
"drizzle-kit": "^0.31.10",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"tsx": "^4.22.4",
"typescript": "6.0.3"
},
"packageManager": "pnpm@9.15.9",
"keywords": [],
"author": "",
"license": "ISC"
}