-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.07 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.07 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
{
"name": "react-dashboard-app",
"description": "Project implementing all the necessary proofs of concept for an application platform Dashboard.",
"version": "1.0.0",
"author": {
"name": "André Rosa",
"email": "andreros@gmail.com"
},
"license": "Unlicense",
"scripts": {
"build": "rsbuild build",
"dev": "rsbuild dev --open",
"lint": "biome check --diagnostic-level=warn",
"lint:fix": "biome check --write . --diagnostic-level=warn",
"nuke": "rm -rf node_modules pnpm-lock.json && npm cache clean --force && pnpm i",
"nuke-git": "git add . && git clean -f -x -d && rm -rf pnpm-lock.json && npm cache clean --force && pnpm i",
"preview": "rsbuild preview"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@rsbuild/core": "1.2.19",
"@rsbuild/plugin-react": "1.1.1",
"@rsbuild/plugin-sass": "1.2.2",
"@types/node": "22.13.11",
"@types/react": "19.0.11",
"@types/react-dom": "19.0.4",
"typescript": "5.8.2"
},
"dependencies": {
"react": "19.0.0",
"react-dom": "19.0.0",
"zustand": "5.0.3"
}
}