-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "next-edge-stack",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm -r --parallel dev",
"dev:web": "pnpm --filter @workspace/web dev",
"dev:worker": "pnpm --filter @workspace/worker dev",
"build": "pnpm -r build",
"test": "vitest",
"test:e2e": "playwright test",
"typecheck": "pnpm -r typecheck",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.13.0",
"husky": "^9.1.0",
"lint-staged": "^15.2.0",
"prettier": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20"
}
}