-
-
Notifications
You must be signed in to change notification settings - Fork 398
/
package.json
105 lines (105 loc) · 3.58 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
101
102
103
104
105
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"check:all": "yarn check:flow && yarn check:ts && yarn check:snapshots && yarn check:lint",
"check:flow": "flow check --max-warnings=0",
"check:ts": "tsc",
"check:snapshots": "lerna run check-snapshot",
"check:lint": "eslint scripts/ packages/ docs/ --ext js,flow,md",
"format": "prettier \"*.{js,md,json,ts}\" \"{docs,packages,scripts}/**/*.{js,md,json,ts}\" --write",
"format:ci": "yarn format --list-different",
"test": "karma start --single-run",
"test:watch": "karma start",
"test:bench": "cross-env BENCHMARK=true karma start --single-run",
"pre-commit": "lint-staged && yarn check:all",
"---Release Scripts---": "",
"version": "yarn build && yarn test && node ./scripts/update-changelog && node ./scripts/add-git-files",
"prerelease": "yarn check:all && yarn format:ci",
"release": "lerna publish",
"postrelease": "node ./scripts/create-github-release",
"release:patch": "yarn release patch --dist-tag latest --exact --force-publish='*'",
"release:minor": "yarn release minor --dist-tag latest --exact --force-publish='*'",
"release:major": "yarn release major --dist-tag latest --exact --force-publish='*'",
"release:prerelease": "yarn release prerelease --dist-tag next --exact --force-publish='*'",
"release:alpha:major": "yarn release premajor --dist-tag next --exact --force-publish='*'"
},
"lint-staged": {
"**/*.{js,md,json,ts,flow}": [
"prettier --write",
"git add"
],
"**/*.{js,flow,md}": [
"eslint"
]
},
"pre-commit": "pre-commit",
"engines": {
"node": ">=10",
"yarn": ">=1.13"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@lerna/prompt": "^3.6.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@types/node": "^14.0.9",
"axios": "^0.18.0",
"babel-loader": "^8.0.4",
"babel-plugin-dev-expression": "^0.2.1",
"camelcase": "^5.0.0",
"chalk": "^2.4.1",
"codecov": "^3.6.5",
"common-tags": "^1.4.0",
"core-js": "^3.9.1",
"cross-env": "^3.1.3",
"css.escape": "^1.5.1",
"detect-browser": "^1.5.0",
"es5-shim": "^4.5.9",
"eslint": "^5.7.0",
"eslint-config-jss": "^5.0.1",
"eslint-config-prettier": "^2.9.0",
"expect.js": "^0.3.1",
"flow-bin": "^0.150.1",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-benchmark": "^0.6.0",
"karma-benchmark-reporter": "^0.1.1",
"karma-browserstack-launcher": "^1.4.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-rc.5",
"lerna": "^3.8.0",
"lint-staged": "^3.2.2",
"mocha": "^3.2.0",
"npmlog": "^4.1.2",
"pre-commit": "^1.1.3",
"prettier": "^2.4.1",
"raf": "^3.4.0",
"react": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.5.4",
"rollup": "^2.33.1",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"shelljs": "^0.8.2",
"sinon": "4.5.0",
"typescript": "^4.4.2",
"webpack": "^4.28.3",
"zen-observable": "^0.6.0"
}
}