-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"name": "warpforge-tracker-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "tsc -b && vite build",
"ci:check": "yarn typecheck && yarn lint && yarn format:check && yarn test",
"dev": "vite",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"preview": "vite preview",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/material": "^6.4.4",
"@mui/styled-engine-sc": "^6.4.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"styled-components": "^6.1.15"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jiti": "^2.4.2",
"prettier": "3.5.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.7.2",
"typescript-eslint": "^8.22.0",
"vite": "^6.1.0"
}
}