-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.54 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
{
"name": "breeze",
"version": "2.0",
"private": true,
"dependencies": {
"@testing-library/user-event": "^14.6.1",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/react-modal": "latest",
"core-js": "latest",
"jest-environment-jsdom": "^30.0.4",
"react": "^19.1.2",
"react-dom": "^19.1.2",
"react-hot-toast": "latest"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"format": "npx @biomejs/biome format --write ./src",
"lint": "npx @biomejs/biome lint --write ./src",
"check": "npx @biomejs/biome check --write ./src",
"dev": "vite"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-react": "^7.22.15",
"@biomejs/biome": "2.1.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.16.4",
"@vitejs/plugin-react": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"prettier": "3.0.3",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vite": "^7.3.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^3.2.4"
}
}