-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 4.31 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "rmwc-main",
"author": "James Friedman",
"version": "6.1.1",
"private": true,
"homepage": "https://rmwc.io",
"description": "RMWC is a React UI Kit built on Google's official Material Components Web library.",
"license": "MIT",
"sideEffects": true,
"main": "index.js",
"types": "index.d.ts",
"peerDependencies": {
"react": "^16.8.x",
"react-dom": "^16.8.x"
},
"dependencies": {},
"scripts": {
"install": "lerna bootstrap --force-local --hoist",
"start": "export NODE_OPTIONS='--max-old-space-size=4096' && react-app-rewired start",
"build:docsite": "export NODE_OPTIONS='--max-old-space-size=4096' && react-app-rewired build && rm -R -f docs && mv build docs",
"build:docs": "npm run clean && npm run docgen && npm run build:docsite",
"build:code": "npm run clean && node scripts/build-code.js",
"build:lib": "node scripts/build-lib.js",
"build": "npm run clean && npm run build:docs && npm run build:code",
"pretest": "node scripts/pretest.js",
"test": "node scripts/test.js",
"test:watch": "react-app-rewired test",
"test:coverage": "react-app-rewired test --coverage --watchAll=false",
"release:patch": "lerna publish patch --dist-tag latest",
"release:minor": "lerna publish minor --dist-tag latest",
"release:major": "lerna publish major --dist-tag latest",
"alpha": "lerna publish --dist-tag next",
"alpha:patch": "lerna publish prepatch --dist-tag next",
"alpha:minor": "lerna publish preminor --dist-tag next",
"alpha:major": "lerna publish premajor --dist-tag next",
"clean": "node scripts/clean.js",
"docgen": "npm run docgen:examples && npm run docgen:props && npm run docgen:markdown",
"docgen:props": "node scripts/docgen-props.js",
"docgen:examples": "node scripts/docgen-examples.js",
"docgen:markdown": "node scripts/docgen-markdown.js",
"update-npmignore": "lerna exec -- cp \\$LERNA_ROOT_PATH/.npmignore .npmignore",
"deploy:docs": "npm run build:docsite && git add docs -f && git commit --allow-empty -m 'Deploying docs' && git push --force && npm run clean",
"changelog": "changelog || echo 'No Changes'",
"storybook": "start-storybook --port 9001",
"storybook:update": "npm i -D @storybook/addon-actions@latest @storybook/addon-knobs@latest @storybook/react@latest",
"preversion": "npm run clean && npm test -- --coverage && npm run docgen && git add --all && git commit --allow-empty -m 'Generating Props'",
"version": "npm run build:code && node scripts/fix-package-version && npm run changelog && git add CHANGELOG.md && git commit --allow-empty -m 'Updating Changelog'",
"postpublish": "npm run clean && npm run build:docsite && git add docs && git commit --allow-empty -m 'Building docs' && git push && git push --tags && npm run clean"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/react": "^5.3.19",
"@testing-library/react": "^10.0.2",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.32",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.5",
"@types/react-router": "^5.1.4",
"@types/react-router-dom": "^4.3.5",
"@types/storybook__react": "^5.2.1",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^7.0.2",
"copyfiles": "^2.2.0",
"documentalist": "^1.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint-plugin-babel": "^5.3.0",
"generate-changelog": "^1.8.0",
"lerna": "^3.20.2",
"module-alias": "^2.2.2",
"prettier": "github:prettier/prettier#master",
"react": "^16.13.1",
"react-app-rewire-hot-loader": "^2.0.1",
"react-app-rewired": "^2.1.5",
"react-dom": "^16.13.1",
"react-ga": "^2.7.0",
"react-hot-loader": "^4.12.20",
"react-live": "^2.2.1",
"react-markdown": "^4.3.1",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"typescript": "^3.9.5",
"webpack": "4.42.0"
},
"eslintIgnore": [
"node_modules"
],
"config-overrides-path": "config/rewire",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}