-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
{
"name": "react-nonogram",
"version": "0.1.0",
"homepage": "https://neumaennl.github.io/react-nonogram",
"private": true,
"type": "module",
"dependencies": {
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"react": "^19.2.0",
"react-dom": "^19.2.4",
"typescript": "^6.0.2",
"web-vitals": "^5.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@eslint/js": "^10.0.0",
"@testing-library/jest-dom": "^6.9.1",
"eslint-plugin-testing-library": "^7.10.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitest/eslint-plugin": "^1.6.15",
"@vitest/coverage-v8": "^4.1.4",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.0.0",
"globals": "^17.5.0",
"jsdom": "^29.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.7",
"vitest": "^4.1.4",
"vite-plugin-svgr": "^5.2.0"
},
"scripts": {
"predeploy": "npm run build",
"start": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:debug": "vitest --inspect-brk --no-file-parallelism"
}
}