-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.35 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "splender",
"version": "0.1.0",
"private": true,
"type": "module",
"homepage": ".",
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/nunito": "^5.0.1",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.132",
"@mui/material": "^5.13.2",
"@mui/x-data-grid": "^6.19.6",
"boardgame.io": "^0.49.12",
"clsx": "^1.1.1",
"firebase": "^10.8.1",
"framer-motion": "^10.12.16",
"jotai": "^2.1.0",
"nanoid": "^5.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "npm run tailwind:css && vite",
"build": "npm run tailwind:css && vite build",
"tailwind:css": "tailwind build src/tailwind.css -c tailwind.config.js -o src/index.css",
"test": "CI=true vitest",
"test-ui": "vitest --ui",
"coverage": "CI=true vitest --coverage",
"preview": "vite preview",
"lint:fix": "eslint -c .eslintrc.json 'src/**/*.tsx' --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/parser": "^5.59.7",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.3.1",
"@vitest/ui": "^1.3.1",
"autoprefixer": "^10.4.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jotai-devtools": "^0.8.0",
"notistack": "^3.0.1",
"postcss": "^8.4.14",
"prettier": "^2.2.1",
"rollup-plugin-copy": "^3.5.0",
"tailwindcss": "^3.4.1",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.3.1"
}
}