-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.72 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@bx-design/react-ui-base",
"version": "1.0.0",
"private": true,
"main": "index.js",
"repository": "git@github.com:bx-design/react-ui.git",
"author": "BX Design",
"license": "MIT",
"keywords": [
"blue express",
"blue express ui",
"bx",
"bx design",
"bx ui",
"bx components",
"components",
"react components",
"react ui"
],
"workspaces": {
"packages": [
"packages/*"
]
},
"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",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "lerna run build --no-private --stream --concurrency=1 --include-dependencies",
"bootstrap": "yarn install && lerna bootstrap --use-workspaces",
"release": "changeset publish"
},
"resolutions": {
"**/react": "17.0.2",
"**/react-dom": "17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/runtime": "^7.16.3",
"@bx-design/react-icons": "^0.3.2",
"@changesets/cli": "^2.18.1",
"@headlessui/react": "^1.4.2",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@storybook/addon-essentials": "^6.4.4",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.4.4",
"@tailwindcss/forms": "^0.3.4",
"@types/node": "^16.11.11",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"autoprefixer": "^10.4.0",
"concurrently": "^6.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"lerna": "^4.0.0",
"postcss": "^8.4.4",
"prettier": "^2.5.0",
"react": "^17.0.2",
"react-docgen-typescript": "^2.2.1",
"react-dom": "^17.0.2",
"read-pkg-up": "^9.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.60.2",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"storybook-addon-performance": "^0.16.1",
"tailwindcss": "^2.2.19",
"typescript": "^4.5.2"
}
}