-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.95 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "chakra-extended",
"private": true,
"workspaces": [
"packages/*"
],
"author": "Nuradiyana <[email protected]>",
"license": "MIT",
"scripts": {
"pkg": "manypkg run",
"check:pkgs": "manypkg check",
"fix:pkgs": "manypkg fix",
"version:pkgs": "changeset version",
"postinstall": "yarn check:pkgs && yarn gen:theme-typings",
"prestart": "yarn && yarn bootstrap",
"boot": "yarn prestart && yarn build",
"start": "yarn prebuild && yarn storybook",
"start:all": "yarn build && concurrently \"yarn docs dev\" \"yarn storybook\" ",
"build": "lerna run build --no-private --stream",
"lint": "lerna run lint --no-private --stream",
"lint:types": "lerna run lint:types --no-private --stream",
"prestorybook": "rimraf node_modules/.cache/storybook",
"storybook": "start-storybook -p 6006",
"clean": "lerna clean --yes && rimraf node_modules",
"clean-dist": "yarn lerna exec -- rimraf dist",
"bootstrap": "lerna bootstrap --use-workspaces",
"build:storybook": "build-storybook && sb extract",
"gen:theme-typings": "chakra-cli tokens packages/theme/src/theme.ts"
},
"resolutions": {
"**/react": "17.0.2",
"**/react-dom": "17.0.2"
},
"version": "1.0.0",
"dependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.4",
"@chakra-ui/babel-plugin": "^1.0.0",
"@chakra-ui/cli": "^1.5.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@manypkg/cli": "^0.18.0",
"@storybook/addon-a11y": "^6.3.12",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-knobs": "^6.3.1",
"@storybook/addon-links": "^6.3.12",
"@storybook/addon-toolbars": "^6.3.12",
"@storybook/cli": "^6.3.12",
"@storybook/react": "^6.3.12",
"@types/node": "^16.11.1",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"concurrently": "^6.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.12.4",
"framer-motion": "^4",
"lerna": "^4.0.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"rimraf": "^3.0.2",
"storybook-addon-performance": "^0.16.1",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
}
}