-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 1.25 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
{
"name": "@vitjs/vit",
"version": "0.0.0",
"description": "🛠 React application framework inspired by UmiJS.",
"repository": "https://github.com/vitjs/vit.git",
"author": "theprimone <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap && lerna run build && cd example && yarn",
"build": "lerna run build",
"ver": "lerna version",
"pub": "lerna publish from-git",
"dev": "npm run dev:demo",
"dev:demo": "cd example && vite --force",
"dev:packages": "lerna run dev --parallel",
"build:demo": "cd example && vite build",
"lint": "npm run lint:js && npm run lint:prettier && npx tsc",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./packages",
"lint:prettier": "prettier -c --write \"packages/**/*\" --end-of-line auto",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./packages"
},
"devDependencies": {
"@umijs/fabric": "^2.10.2",
"concurrently": "^7.0.0",
"eslint": "^7",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"globby": "^11.0.3",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"
}
}