-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.02 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "template-vite-react",
"version": "0.0.1",
"description": "Vite/React/TypeScript Boilerplate",
"author": "Curtis Dulmage",
"license": "UNLICENSED",
"keywords": [
"Vite",
"React",
"TypeScript",
"ESLint",
"Boilerplate",
"Starter"
],
"homepage": "https://github.com/beefchimi/template-vite-react",
"bugs": {
"url": "https://github.com/beefchimi/template-vite-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beefchimi/template-vite-react.git"
},
"private": true,
"type": "module",
"engines": {
"node": ">=22.11.0",
"npm": ">=10.9.0"
},
"scripts": {
"clean": "rm -rf dist && rm -rf node_modules/.cache && rm -rf node_modules/.vite",
"nuke": "npm run clean && rm -rf node_modules && rm -rf package-lock.json && npm cache clean --force",
"start": "vite --port=3001",
"preview": "vite preview --host",
"build": "npm run clean && tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"format": "echo 'Prettier has not been configured for this app.'",
"typecheck": "tsc --noEmit",
"test": "vitest --pool forks",
"test:ui": "vitest --ui"
},
"dependencies": {
"beeftools": "^0.1.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-transition-state": "^2.2.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.13.0",
"jsdom": "^25.0.1",
"lightningcss": "^1.28.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vite": "^6.0.3",
"vitest": "^2.1.8",
"vite-plugin-svgr": "^4.3.0"
}
}