-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.42 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
62
{
"name": "mpga",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:run": "turbo run test",
"test:coverage": "turbo run test -- --coverage",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"test:e2e": "playwright test --config e2e/playwright.config.ts",
"test:e2e:ui": "playwright test --config e2e/playwright.config.ts --ui",
"db:generate": "turbo run db:generate",
"db:push": "turbo run db:push",
"db:studio": "turbo run db:studio",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{js,mjs,cjs}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^16.2.7",
"mysql2": "^3.11.5",
"prettier": "^3.5.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tsx": "^4.21.0",
"turbo": "^2.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"pnpm": {
"overrides": {
"react": "^19.2.3",
"react-dom": "^19.2.3"
}
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20"
}
}