This repository has been archived by the owner on Apr 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
65 lines (65 loc) · 1.9 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
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
{
"name": "vechaiui",
"private": true,
"version": "1.0.0",
"workspaces": {
"packages": [
"packages/*",
"docs"
]
},
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"clean": "lerna clean --yes && rm -rf node_modules",
"clean-dist": "yarn lerna exec -- rimraf dist",
"prestart": "yarn && yarn bootstrap",
"boot": "yarn prestart && yarn build",
"start": "yarn build && yarn storybook",
"start:all": "yarn build && concurrently \"yarn docs dev\" \"yarn storybook\" ",
"build": "lerna run build --no-private --stream",
"bootstrap": "yarn install && lerna bootstrap --use-workspaces",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"release": "changeset publish",
"docs": "yarn workspace @vechaiui/docs",
"docs:dev": "yarn docs dev",
"docs:start": "yarn docs start"
},
"resolutions": {
"**/react": "17.0.2",
"**/react-dom": "17.0.2"
},
"author": "pepelele",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/runtime": "^7.14.5",
"@changesets/cli": "^2.16.0",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.3.0",
"@tailwindcss/forms": "^0.3.3",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"autoprefixer": "^10.4.0",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"lerna": "^4.0.0",
"postcss": "^8.3.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"storybook-addon-performance": "^0.16.0",
"tailwindcss": "^2.2.19",
"typescript": "^4.3.2"
}
}