-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 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
{
"name": "pacman",
"version": "0.1.0",
"private": true,
"license": "private",
"dependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.0",
"@types/lodash": "^4.17.24",
"@types/node": "^22.19.17",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.1.7",
"antd": "^6.3.5",
"classnames": "^2.2.6",
"immer": "^11.1.4",
"lodash": "^4.17.15",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.0",
"styled-components": "^6.4.0",
"typescript": "^5.8.3",
"zustand": "^5.0.12"
},
"scripts": {
"compile": "tsc --noEmit",
"compile:watch": "tsc --noEmit --watch",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ci": "vitest run",
"prettier": "prettier --write \"**/*.{ts,tsx,md,json,js}\"",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"prepare": "husky"
},
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/dom": "^10.4.1",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"prettier": "^3.8.2",
"vite": "^8.0.8",
"vitest": "^4.1.4"
}
}