-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 954 Bytes
/
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
{
"private": true,
"scripts": {
"build": "npm run build:lib",
"build:lib": "lerna exec --scope @uiw/* -- npm run build",
"build:doc": "lerna exec --scope website -- npm run build",
"doc": "lerna exec --scope website -- npm run start",
"start": "lerna exec --scope @uiw/* -- npm run watch",
"prepare": "npm run build && husky install",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"version": "lerna version --no-changelog --no-git-tag-version --no-push"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-test-renderer": "^18.0.0",
"@kkt/ncc": "^1.0.15",
"compile-less-cli": "^1.8.14",
"husky": "^8.0.3",
"prettier": "^3.0.0",
"lerna": "^7.1.4",
"tsbb": "^4.1.14"
},
"eslintConfig": {
"extends": "react-app"
},
"engines": {
"node": ">=16.0.0"
},
"workspaces": [
"core",
"www"
]
}