-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 959 Bytes
/
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
{
"name": "reactx",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "rsbuild dev --port 3000",
"build": "rsbuild build",
"preview": "rsbuild preview",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write src/*"
},
"dependencies": {
"clsx": "^2.1.1",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.5"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@rsbuild/core": "1.2.3",
"@rsbuild/plugin-react": "1.1.0",
"@tailwindcss/postcss": "^4.0.3",
"@types/prop-types": "^15.7.14",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^15.14.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.3"
}
}