-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.61 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
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"postinstall": "lerna exec -- yarn install",
"build": "lerna run compile && lerna run test",
"compile": "lerna run compile",
"clean": "lerna run clean",
"clean-dep": "lerna run clean-dep",
"deploy": "lerna run compile && lerna run test && lerna publish from-package",
"eslint": "lerna run eslint",
"format": "lerna run format",
"test": "lerna run test"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/runtime": "^7.7.2",
"@types/jest": "^26.0.0",
"ts-jest": "^26.5.6",
"jest": "^26.0.0",
"jest-junit": "8.0.0",
"babel-jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.24.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.10.1",
"eslint-import-resolver-typescript": "2.0.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-json": "2.1.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.1",
"lerna": "^3.16.4",
"prettier": "2.0.1",
"typescript": "3.8.3",
"@types/react": "16.8.14",
"@types/react-dom": "16.8.4",
"react-native": "0.59.8",
"react": "16.8.3",
"rimraf": "2.6.3",
"promise-polyfill": "6.1.0",
"fbjs": "^3.0.0",
"tslib": "^1.11.1"
}
}