-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 798 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 798 Bytes
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
{
"name": "root",
"version": "0.3.1",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build:npm": "VITE_LIB=store vite build && VITE_LIB=taro vite build && VITE_LIB=web vite build",
"lint": "eslint ./packages --ext ts,tsx",
"lint:fix": "eslint ./packages/*/src --ext ts,tsx --fix",
"release": "lerna publish from-package --yes --no-verify-access"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"@vitejs/plugin-react": "^2.0.0",
"eslint": "^8.21.0",
"eslint-config-tencent": "^1.0.4",
"eslint-plugin-react-hooks": "^4.6.0",
"lerna": "^5.3.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"vite": "^3.0.4",
"vite-plugin-dts": "^1.4.1"
}
}