-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 937 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 937 Bytes
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
{
"name": "pulsestack",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.33.2",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"format": "prettier --write ."
},
"devDependencies": {
"@types/pg": "^8.15.5",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/node": "^24.7.2",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"tsx": "^4.20.5",
"turbo": "^2.5.6",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"typescript": "^5.9.2",
"vite": "^7.1.5",
"tsx": "^4.20.5",
"vitest": "^3.2.4",
"eslint": "^9.35.0"
}
}
}