-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 774 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 774 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
{
"name": "applypilot",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.6.5",
"scripts": {
"dev:web": "pnpm --filter @applypilot/web dev",
"dev:extension": "pnpm --filter @applypilot/extension dev",
"build": "pnpm -r build",
"lint": "pnpm -r lint",
"test": "vitest run",
"test:e2e": "playwright test",
"check": "pnpm lint && pnpm test"
},
"devDependencies": {
"@playwright/test": "^1.53.0",
"@types/chrome": "^0.0.330",
"@types/node": "^24.0.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"eslint": "^9.28.0",
"eslint-config-next": "^15.3.2",
"jsdom": "^26.1.0",
"next": "^15.3.2",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
}
}