-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.64 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
{
"name": "unochart",
"private": true,
"version": "1.0.0",
"scripts": {
"start": "rsbuild dev --open",
"build": "rsbuild build",
"lint": "biome check",
"lint:fix": "biome check --apply",
"format": "biome format",
"preview": "rsbuild preview",
"test": "jest"
},
"dependencies": {
"d3-shape": "^3.2.0",
"lucide-react": "^0.445.0",
"react": "^19.0.0-rc-100dfd7dab-20240701",
"react-dom": "^19.0.0-rc-100dfd7dab-20240701",
"react-router-dom": "^6.26.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@rsbuild/core": "^1.0.5",
"@rsbuild/plugin-react": "^1.0.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.4.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/recharts": "1.8.29",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.10",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"prettier": {
"endOfLine": "auto",
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"jsxSingleQuote": true,
"printWidth": 120,
"tabWidth": 4
}
}