This repository has been archived by the owner on May 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.51 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
{
"name": "mui-treasury",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "^7.12.17",
"@babel/plugin-transform-object-assign": "7.12.13",
"@emotion/react": "11.1.5",
"@emotion/styled": "11.1.5",
"@material-ui/core": "5.0.0-alpha.34",
"@material-ui/icons": "5.0.0-alpha.34",
"@material-ui/lab": "5.0.0-alpha.34",
"@mui-treasury/components": "1.10.1",
"@mui-treasury/styles": "1.13.1",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-essentials": "^6.1.18",
"@storybook/addon-links": "^6.1.18",
"@storybook/addon-storysource": "6.2.9",
"@storybook/react": "^6.1.18",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "11.2.5",
"@testing-library/react-hooks": "5.1.1",
"@testing-library/user-event": "13.1.9",
"@types/jest": "26.0.20",
"@types/node": "^14.11.2",
"@types/react-dom": "17.0.1",
"babel-loader": "^8.2.2",
"babel-plugin-optimize-clsx": "2.6.1",
"chromatic": "5.8.3",
"commander": "7.1.0",
"cpy": "8.1.2",
"cross-env": "7.0.3",
"edit-package-json": "0.3.7",
"husky": "4",
"hygen": "6.0.4",
"jest": "26.6.3",
"jest-each": "26.6.2",
"jest-extended": "0.11.5",
"lerna": "3.22.1",
"lint-staged": "10.5.4",
"mdx-embed": "0.0.19",
"package-build-stats": "7.2.2",
"prettier": "2.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"rimraf": "3.0.2",
"storybook-addon-mdx-embed": "0.0.19",
"storybook-addon-mui-mode": "0.0.2",
"stylis": "4.0.10",
"stylis-plugin-rtl": "2.0.2",
"ts-jest": "26.5.1",
"ts-node": "9.1.1",
"tsconfig-paths-webpack-plugin": "3.3.0",
"typescript": "4.1.5"
},
"scripts": {
"start": "start-storybook -p 6006",
"test": "jest",
"test:watch": "jest --watch",
"prettier-js": "prettier --write \"**/javascript/**/*\"",
"compile-js": "lerna run compile-js; yarn clean && yarn prettier-js",
"clean": "lerna run clean",
"init:component": "hygen package component",
"init:style": "hygen package style",
"init:hook": "hygen package hook",
"dev:cli": "yarn workspace mui-treasury run dev",
"create-layout-storybook": "npx hygen layout storybook",
"print-package-stats": "ts-node scripts/print-package-stats",
"build:packages": "lerna run build",
"build:storybook": "build-storybook",
"publish-packages": "lerna publish prerelease --no-commit-hooks --yes --no-verify-access --contents dist"
}
}