-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 863 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 863 Bytes
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
{
"name": "react_minimum_boilerplate_2",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"format": "biome format --write ./src && prettier --write \"./src/**/*.scss\"",
"lint": "biome lint ./src",
"lint:fix": "biome check --write ./src",
"preview": "vite preview",
"start": "pnpm run dev"
},
"dependencies": {
"jotai": "^2.19.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.3.0",
"prettier": "3.8.1",
"sass": "^1.98.0",
"typescript": "~6.0.2",
"vite": "^8.0.3"
},
"packageManager": "pnpm@10.33.0"
}