forked from imbhargav5/rooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.79 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
{
"name": "root",
"private": true,
"description": "Useful React hooks for everyone.",
"scripts": {
"clean": "lerna clean",
"lint": "lerna run lint --stream --parallel",
"test": "lerna run test --stream --parallel",
"coverage": "lerna run test --stream --parallel -- --coverage",
"dev": "cd packages/storybook && yarn storybook",
"deploy:dev": "cd packages/storybook && yarn deploy:dev",
"deploy": "cd packages/storybook && yarn deploy",
"create": "node helpers/create",
"readme-to-docs": "lerna exec --scope=@rooks/* --scope=rooks --concurrency 1 --stream -- 'node ../../helpers/docs.js'",
"bs": "lerna bootstrap",
"prebuild": "lerna clean -y && yarn",
"build:independent": "lerna run --ignore rooks --ignore storybook --ignore shared build",
"build:rooks": "lerna run --scope rooks build",
"build:demos": "lerna run --scope storybook build",
"build:shared": "lerna run --scope shared build",
"build:ci": "NODE_ENV=CI yarn run build:shared && yarn run build:independent && yarn run build:rooks",
"build:action": "NODE_ENV=CI yarn run build:shared && yarn run build:independent && yarn run build:rooks && yarn run build:demos",
"build": "yarn run build:shared --stream --parallel && yarn run build:independent --stream --parallel && yarn run build:rooks && yarn run build:demos --stream --parallel",
"generate:types": "lerna run generate:types --stream",
"prerelease-version-bump": "GITHUB_SHA=$(git rev-parse HEAD | cut -c1-8);lerna version prerelease --force-publish=* --preid ${GITHUB_SHA}",
"ga-prerelease-version": "lerna version prerelease --force-publish=* --no-commit-hooks --no-push --yes",
"bump-canary": "yarn run new-canary-version prerelease",
"new-canary-version": "GITHUB_SHA=$(git rev-parse HEAD | cut -c1-8);lerna version --force-publish=* --preid canary",
"new-release-version": "lerna version --force-publish=*",
"ga-npm-publish": "lerna publish from-git --force-publish=* --yes",
"ts": "rimraf packages/*/*.tsbuildinfo && rimraf packages/*/lib/*.d.ts && tsc -b @package-name-list.txt"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.7.5",
"@babel/plugin-external-helpers": "7.2.0",
"@babel/plugin-proposal-export-default-from": "7.5.2",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"@testing-library/react": "9.3.2",
"@testing-library/react-hooks": "3.2.1",
"@types/react": "*",
"@types/react-dom": "*",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "8.0.5",
"babel-plugin-prismjs": "1.0.2",
"babel-preset-minify": "0.5.1",
"browser-env": "3.2.5",
"chalk": "2.4.2",
"inquirer": "7.0.0",
"jest": "^23.6.0",
"lerna": "^3.13.2",
"lodash.capitalize": "4.2.1",
"make-dir": "1.3.0",
"meow": "5.0.0",
"mini-css-extract-plugin": "0.8.0",
"ora": "4.0.3",
"raf": "3.4.1",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-test-renderer": "16.9.0",
"read-pkg-up": "7.0.0",
"replace-string": "2.0.0",
"rollup": "1.20.3",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-flow": "1.1.1",
"rollup-plugin-json": "3.1.0",
"rollup-plugin-multi-entry": "2.1.0",
"rollup-plugin-node-resolve": "4.0.0",
"rollup-plugin-replace": "2.1.0",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-terser": "4.0.4",
"rollup-plugin-typescript2": "0.24.3",
"shelljs": "0.8.3",
"tslib": "1.9.3",
"typescript": "3.4.1",
"webpack": "4.29.1",
"webpack-cli": "3.2.1",
"write-pkg": "3.2.0"
},
"optionalDependencies": {
"fsevents": "1.2.9"
},
"dependencies": {
"jest-localstorage-mock": "2.4.0"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"terser": "3.14"
}
}