-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 1.86 KB
/
package.json
File metadata and controls
executable file
·69 lines (69 loc) · 1.86 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "cssgridflex-solarsystem",
"version": "1.0.0",
"private": true,
"main": "index.jsx",
"type": "module",
"author": "sblaschke",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage"
},
"dependencies": {
"camelcase": "^6.2.1",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"prompts": "^2.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"react-transition-group": "^4.4.5",
"sharp": "^0.33.5",
"tailwindcss": "^3.0.2",
"vite-tsconfig-paths": "^5.1.2"
},
"devDependencies": {
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "14.5.2",
"@vitejs/plugin-react": "4.3.1",
"@vitest/browser": "2.1.4",
"@vitest/coverage-v8": "2.1.4",
"@vitest/ui": "^2.1.4",
"autoprefixer": "10.4.20",
"browserslist": "^4.24.2",
"browserslist-to-esbuild": "^2.1.1",
"concurrently": "6.4.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.1",
"globals": "15.9.0",
"happy-dom": "^15.11.3",
"playwright": "1.48.0",
"postcss": "^8.4.44",
"prettier": "^3.3.3",
"tailwind-merge": "^2.6.0",
"vite": "^5.4.11",
"vite-imagetools": "^7.0.5",
"vite-plugin-dynamic-import": "^1.6.0",
"vitest": "2.1.4",
"vitest-browser-react": "0.0.1",
"vitest-fetch-mock": "0.3.0"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"eslintConfig": {
"extends": "react-app"
}
}