-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"clean": "lerna exec -- gulp clean --cwd .",
"build": "lerna exec --no-private -- gulp --cwd .",
"lint": "lerna exec -- eslint --ext .jsx,.js src",
"test": "jest --coverage",
"verify": "yarn check --integrity && yarn lint && yarn test && yarn flow"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-flow": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-hooks": "^2.3.0",
"flow-bin": "^0.116.1",
"flow-copy-source": "^2.0.9",
"flow-typed": "^2.4.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"jest": "^24.9.0",
"lerna": "^3.20.2"
}
}