This repository has been archived by the owner on Mar 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.88 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
{
"private": true,
"scripts": {
"lerna": "./node_modules/.bin/lerna",
"prepack": "yarn lint && yarn build",
"unlink-all": "./node_modules/.bin/lerna exec --parallel -- yarn unlink",
"link-all": "./node_modules/.bin/lerna exec --parallel -- yarn link",
"clean-all": "./node_modules/.bin/lerna exec --parallel -- yarn clean",
"build-all": "./node_modules/.bin/lerna exec --parallel -- yarn build",
"build": "yarn clean-all && yarn build-all",
"test": "BABEL_ENV='tests' ./node_modules/.bin/jest",
"lint": "BABEL_ENV='tests' ./node_modules/.bin/eslint ."
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "7.12.13",
"@babel/eslint-parser": "7.12.13",
"@babel/eslint-plugin": "7.12.13",
"@babel/plugin-transform-runtime": "7.12.15",
"@babel/preset-env": "7.12.13",
"@babel/preset-react": "7.12.13",
"@poool/eslint-config": "1.4.2",
"@poool/eslint-config-react": "1.4.2",
"@poool/eslint-plugin": "1.4.2",
"babel-jest": "26.6.3",
"builtin-modules": "3.2.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "7.19.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-standard": "4.1.0",
"jest": "26.6.3",
"lerna": "3.22.1",
"puppeteer": "7.0.4",
"react": "16.14.0",
"react-dom": "16.14.0",
"rollup": "2.38.5",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-eslint": "7.0.0",
"rollup-plugin-node-externals": "2.2.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "7.0.2"
},
"engines": {
"node": ">=10.18",
"yarn": ">=1"
},
"publishConfig": {
"access": "public"
}
}