-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.05 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.05 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
{
"name": "start-vite-react-mui-project",
"version": "1.0.7",
"main": "index.js",
"license": "MIT",
"description": "A CLI tool to scaffold a React + Vite app with MUI, React Router, and Storybook.",
"dependencies": {
"commander": "^14.0.0",
"dotenv": "^16.5.0",
"enquirer": "^2.4.1",
"execa": "^9.6.0",
"fs-extra": "^11.3.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.15.24",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"bin": {
"start-vite-react-mui-project": "./bin/index.js"
},
"scripts": {
"build": "tsc && cp -r templates dist/",
"start-new-project": "node ./bin/index.js",
"dev": "ts-node src/index.ts",
"start": "node ./bin/index.js",
"link": "yarn build && yarn link"
},
"files": [
"bin",
"dist"
],
"keywords": [
"cli",
"vite",
"react",
"starter",
"scaffold",
"bulletproof-react",
"mui",
"react-router",
"storybook",
"boilerplate"
],
"type": "module",
"engines": {
"node": ">=16"
}
}