-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.8 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
{
"name": "@joejordan/vite-frontend-template",
"description": "Vite frontend starter template with delicious defaults",
"version": "0.6.7",
"author": {
"name": "Joe Jordan",
"url": "https://github.com/joejordan"
},
"repository": {
"type": "git",
"url": "git://github.com/joejordan/vite-frontend-template.git"
},
"type": "module",
"engines": {
"node": ">=18.11.0",
"pnpm": ">=7.1.0"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@eslint-react/eslint-plugin": "^1.15.2",
"@swc/core": "^1.7.40",
"@types/node": "^22.8.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.13.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"jsonc-eslint-parser": "^2.4.0",
"npm-run-all2": "^7.0.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"scripts": {
"build": "vite build",
"dev:update-deps": "rm -rf pnpm-lock.yaml node_modules/ **/node_modules && pnpm install",
"start": "vite dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm-run-all --parallel tsc:check vitest:run lint lint:fix",
"tsc:check": "tsc",
"vitest:run": "vitest run",
"bump:patch": "pnpm version patch -m \"chore(release): bump version to %s\"",
"bump:minor": "pnpm version minor -m \"chore(release): bump version to %s\"",
"bump:major": "pnpm version major -m \"chore(release): bump version to %s\"",
"bump:push": "git push --follow-tags"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}