-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 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
{
"name": "task_sphere",
"version": "1.0.0",
"engines": {
"node": ">=24.11.0"
},
"description": "Task & Project Management Backend API",
"main": "index.js",
"scripts": {
"dev": "tsx ./src/index.ts",
"start": "node dist/index.js",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:seed": "node src/db/seed.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix"
},
"author": "agx",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/express": "^5.0.5",
"@types/node": "^24.10.1",
"@types/pg": "^8.15.6",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"drizzle-kit": "^0.31.7",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"nodemon": "^3.1.11",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
},
"dependencies": {
"@epic-web/remember": "^1.1.0",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.7",
"drizzle-zod": "^0.8.3",
"express": "^5.1.0",
"mongoose": "^8.20.0",
"pg": "^8.16.3",
"zod": "^4.1.12"
}
}