-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
{
"name": "root",
"private": true,
"scripts": {
"test": "jest",
"integration": "./bin/integration.sh integration",
"integrationLocal": "./bin/integration.sh integrationLocal",
"build": "tsc -b",
"deploy": "lerna publish from-git -y",
"publish": "./bin/publish.sh",
"lint": "eslint packages/*/src/**/*.ts",
"updateReadmes": "lerna exec \"cp \\$LERNA_ROOT_PATH/README.md \\$PWD/README.md\""
},
"license": "BSD-3-Clause",
"devDependencies": {
"@types/jest": "24.0.15",
"@types/node": "14.14.31",
"@types/react": "16.9.41",
"@types/request-promise": "4.1.45",
"@typescript-eslint/eslint-plugin": "2.21.0",
"@typescript-eslint/eslint-plugin-tslint": "2.21.0",
"@typescript-eslint/parser": "2.21.0",
"aws-sdk": "2.625.0",
"eslint": "7.19.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.1",
"jest": "25.1.0",
"jest-extended": "0.11.5",
"lerna": "3.20.2",
"npm-normalize-package-bin": "1.0.1",
"prettier": "1.19.1",
"react": "16.12.0",
"ts-jest": "25.2.1",
"tslint": "5.20.1",
"tslint-plugin-prettier": "2.1.0",
"typescript": "3.8.2"
},
"resolutions": {
"@types/react": "16.9.41",
"@types/node": "14.14.31"
},
"workspaces": [
"packages/*"
],
"nohoist": ["**/@storybook/**"]
}