-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.52 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
{
"name": "react-sample-app-2024",
"version": "1.0.0",
"description": "React sample application to help bootstrap new React projects in a simple and fast way.",
"author": "André Rosa (andreros@gmail.com)",
"license": "UNLICENSED",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage --run",
"clean": "git add . && git clean -f -x -d -e node_modules",
"nuke": "npx rimraf node_modules && npm cache clean --force && npm run clean && npm i"
},
"devDependencies": {
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.9.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/prop-types": "15.7.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^2.1.2",
"eslint": "^9.9.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.9.0",
"jsdom": "^25.0.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.8.1",
"vite": "^5.4.1",
"vitest": "^2.1.2"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}