-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.69 KB
/
package.json
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
{
"type": "module",
"name": "react-mui-vite-ts",
"version": "0.3.15",
"description": "Starter project for Vite with React + MUI using TypeScript",
"author": {
"name": "Anton Karpenko",
"email": "i@karpolan.com",
"url": "https://karpolan.com"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"format": "prettier ./src --write",
"lint": "eslint .",
"preview": "vite preview",
"start": "npm run dev",
"type": "tsc",
"test:jest": "jest",
"test:vitest": "vitest",
"test": "npm run test:vitest"
},
"dependencies": {
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "latest",
"@mui/material": "latest",
"react": "latest",
"react-dom": "latest",
"react-router-dom": "latest"
},
"devDependencies": {
"@eslint/js": "^9",
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@testing-library/user-event": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/react-router-dom": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@vitejs/plugin-react-swc": "latest",
"eslint": "latest",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "latest",
"globals": "latest",
"jest": "latest",
"jest-environment-jsdom": "latest",
"jsdom": "latest",
"prettier": "latest",
"ts-jest": "latest",
"ts-jest-mock-import-meta": "latest",
"ts-node": "latest",
"typescript": "^5",
"typescript-eslint": "latest",
"vite": "^5",
"vite-tsconfig-paths": "latest",
"vitest": "latest"
}
}