-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 4.16 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 4.16 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "buner",
"version": "1.0.12",
"description": "Frontend build toolkit for Vite + React SSR projects — SCSS pipeline, prerender, SSR dev server, and backend integration.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/precise-alloy/buner.git"
},
"homepage": "https://www.npmjs.com/package/buner",
"keywords": [
"vite",
"react",
"ssr",
"scss",
"prerender",
"frontend",
"build-tool",
"cli"
],
"bin": {
"buner": "./dist/buner.js"
},
"files": [
"dist",
"xpack",
"public",
"vite.config.ts",
"index.html",
"tsconfig.json",
"eslint.config.mjs",
"types.d.ts",
".env",
".env.development",
".env.eshn",
"README.md"
],
"scripts": {
"start": "bun run dev",
"predev": "bun upgrade",
"dev": "concurrently --kill-others \"bun styles.ts --watch\" \"bun states.ts --watch\" \"cross-env scriptOnly=true vite build --mode development --watch\" \"bun server.ts --mode development\"",
"serve": "bun server.ts",
"watch": "bun server.ts",
"build": "bun run build:static && bun run build:server",
"build:eshn": "bun run build:static:eshn && bun run build:server:eshn",
"preview": "vite preview",
"build:server": "vite build --ssr src/entry-server.tsx --outDir dist/server",
"build:server:eshn": "vite build --ssr src/entry-server.tsx --outDir dist/server --mode eshn",
"build:static": "vite build --outDir dist/static",
"build:static:eshn": "vite build --outDir dist/static --mode eshn",
"generate": "bun states.ts && bun run styles && bun run build && bun prerender.ts --add-hash",
"eshn": "bun states.ts && bun run styles && bun run build:eshn && bun prerender.ts --add-hash --mode eshn",
"inte": "bun run styles && bun run build && bun prerender.ts && bun integration.ts",
"styles": "bun styles.ts",
"format": "prettier --write .",
"lint": "eslint --fix",
"cli:start": "vite build -c vite.cli.config.ts --watch",
"cli:build": "vite build -c vite.cli.config.ts"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@vitejs/plugin-react": "^5.1.4",
"autoprefixer": "^10.4.27",
"chalk": "^5.5.0",
"cheerio": "^1.2.0",
"chokidar": "^4.0.3",
"commander": "^14.0.3",
"concurrently": "^9.2.0",
"cross-env": "^10.1.0",
"cssnano": "^7.1.0",
"debounce": "^3.0.0",
"express": "^5.2.1",
"glob": "^13.0.6",
"globby": "^16.1.1",
"js-beautify": "^1.15.4",
"lodash": "^4.17.21",
"magic-string": "^0.30.17",
"node-fetch": "^3.3.2",
"postcss": "^8.5.8",
"prompts": "^2.4.2",
"sass": "^1.89.2",
"slash": "^5.1.0",
"validate-npm-package-name": "^7.0.0",
"vite": "^7.0.6"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"react-router-dom": "^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@next/eslint-plugin-next": "^16.0.8",
"@types/css": "^0.0.38",
"@types/debounce": "^1.2.4",
"@types/express": "^5.0.6",
"@types/js-beautify": "^1.14.3",
"@types/lodash": "^4.17.24",
"@types/node": "^24.11.0",
"@types/prettier": "^3.0.0",
"@types/prompts": "^2.4.9",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.1.7",
"@types/validate-npm-package-name": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"css": "^3.0.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.0.8",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^16.3.0",
"msw": "^2.12.10",
"postcss-scss": "^4.0.9",
"prettier": "^3.6.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.13.1",
"rollup": "^4.59.0",
"svgo": "^4.0.0"
},
"msw": {
"workerDirectory": "public"
}
}