-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
54 lines (54 loc) · 1.65 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
{
"workspaces": [
"packages/*"
],
"private": true,
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"build": "yarn workspaces run build",
"clean": "yarn workspaces run clean",
"test": "yarn workspaces run test",
"start": "cd packages/example-page && yarn start",
"copy-types": "yarn workspaces run copy-types",
"pretype-check": "yarn copy-types",
"type-check": "flow check",
"lint": "eslint \"packages/*/{src,test}/**/*.js\"",
"format": "prettier --write \"packages/**/{src,test}/**/*.js\"",
"postinstall": "lerna bootstrap",
"publish-packages": "lerna publish"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-transform-flow-strip-types": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"babel-jest": "^24.9.0",
"enzyme": "^3.9.0",
"eslint": "6.x",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "2.x",
"flow-bin": "^0.123.0",
"jasmine-reporters": "^2.3.2",
"jest": "^24.1.0",
"jest-enzyme": "^7.1.2",
"jest-watch-typeahead": "^0.2.1",
"lerna": "^3.20.2",
"prettier": "^2.0.5",
"react": "^16.8.3",
"react-dom": "^16.8.3"
}
}