-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.65 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
{
"name": "event-chaos:-live-production-simulator",
"private": true,
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,json,md,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,mjs,json,md,css}\"",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run test && npm run build && npm run check:budget",
"check:budget": "node scripts/check-bundle-budget.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:playtest": "vitest run tests/playtest-automation-regressions.test.ts"
},
"dependencies": {
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.4",
"@types/node": "^22.14.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.5.4",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.4",
"globals": "^17.11.0",
"jsdom": "^29.1.1",
"postcss": "^8.5.26",
"prettier": "^3.9.6",
"tailwindcss": "^3.4.19",
"typescript": "~5.8.2",
"typescript-eslint": "^8.67.0",
"vite": "^6.2.0",
"vitest": "^3.2.4"
}
}