-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
108 lines (108 loc) · 3.16 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "eruption",
"description": "Next Generation Boilerplate for React/Typescript, built on top of Vite ⚡️",
"private": false,
"version": "1.12",
"type": "module",
"main": "src/main.tsx",
"license": "MIT",
"author": "EruptionJS🌋",
"homepage": "https://github.com/eruptionjs/core#readme",
"repository": "github:eruptionjs/core.git",
"bugs": "https://github.com/eruptionjs/core/issues",
"scripts": {
"dev": "vite --host",
"start": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview --host",
"test": "vitest",
"treemap": "vite-bundle-visualizer --open --template=treemap --output='./dist/treemap.html'",
"prune": "rm -rf node_modules yarn.lock package-lock.json pnpm-lock.yaml bun.lockb dist coverage build dev-dist",
"preupdate": "bun pm cache rm",
"update": "ncu --interactive --format group --install never",
"postupdate": "bun install",
"upgrade": "bun run prune && bun run update",
"test:watch": "vitest --watch",
"test:coverage": "vitest --watch --coverage",
"test:ui": "vitest --watch --coverage --ui",
"lint": "eslint src --no-inline-config --report-unused-disable-directives --max-warnings 0",
"lint:fix": "bun run lint -- --fix",
"lint:css": "stylelint **/*.css --aei --color",
"prettier": "prettier src --check",
"prettier:fix": "bun run prettier -- --write",
"format": "bun run prettier && bun run lint",
"format:fix": "bun run prettier:fix && bun run lint:fix",
"lint-staged": "lint-staged && tsc",
"prebuild": "bun run lint-staged",
"prepare": "husky",
"commit": "commit"
},
"engines": {
"node": "!^x",
"npm": "!^x",
"yarn": "!^x",
"pnpm": "!^x",
"bun": "^1.1.x"
},
"dependencies": {
"react": "^19.x",
"react-dom": "^19.x"
},
"devDependencies": {
"@commitlint/cli": "^19.x",
"@commitlint/config-conventional": "^19.x",
"@commitlint/prompt-cli": "^19.x",
"@commitlint/types": "^19.x",
"@eruptionjs/config": "^0.5.0",
"@testing-library/jest-dom": "^6.x",
"@testing-library/react": "^16.x",
"@testing-library/user-event": "^14.x",
"@types/bun": "^1.x",
"@types/react": "^19.x",
"@types/react-dom": "^19.x",
"@vitejs/plugin-react-swc": "^3.x",
"@vitest/coverage-v8": "^2.x",
"@vitest/ui": "^2.x",
"c8": "^10.x",
"eslint": "^9.x",
"happy-dom": "^15.x",
"husky": "^9.x",
"lint-staged": "^15.x",
"msw": "^2.x",
"npm-check-updates": "^16.x",
"prettier": "^3.x",
"stylelint": "^16.x",
"stylelint-config-standard": "^36.x",
"typescript": "^5.x",
"vite": "^5.x",
"vite-bundle-visualizer": "^1.x",
"vite-plugin-compression2": "^1.x",
"vite-plugin-qrcode": "^0.x",
"vitest": "^2.x",
"web-vitals": "^3.x"
},
"msw": {
"workerDirectory": "public"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"react",
"boilerplate",
"vite",
"bundle",
"typescript",
"starter",
"template"
]
}