-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.32 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
{
"private": true,
"engines": {
"node": ">=10.10.0"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@babel/register": "^7.9.0",
"@rollup/plugin-replace": "^2.3.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-tester": "^9.0.0",
"babel-plugin-transform-dev-warning": "^0.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.21",
"concurrently": "^4.1.1",
"cross-env": "^7.0.2",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.12.0",
"eslint-config-react-union": "^0.15.0",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.12.3",
"eslint-plugin-react-hooks": "^2.3.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.2",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lerna": "^3.19.0",
"lint-staged": "^8.0.3",
"npm-package-json-lint": "^3.4.1",
"npm-package-json-lint-config-default": "^2.0.0",
"prettier": "^1.19.1",
"ramda": "^0.27.0",
"ramda-extension": "^0.10.0",
"rimraf": "^3.0.2",
"rollup": "^2.3.4",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-size-snapshot": "^0.11.0",
"rollup-plugin-terser": "^5.3.0"
},
"scripts": {
"build": "lerna run build",
"start": "lerna run start",
"test": "jest",
"lint": "yarn lint:pkg && yarn lint:js",
"lint:pkg": "npmPkgJsonLint .",
"lint:js": "eslint --cache --ignore-path .gitignore --ext .js ./",
"precommit": "lint-staged",
"prepush": "yarn lint && yarn test",
"format": "prettier --ignore-path .gitignore --write '**/*.{js,json}' 'packages/*/!(node_modules)/**/*.js'"
}
}