-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
74 lines (74 loc) · 1.87 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"private": true,
"dependencies": {
"aws-sdk": "^2.577.0",
"graphql": "^15.5.0",
"graphql-subscriptions": "^1.1.0"
},
"resolutions": {
"@types/aws-lambda": "^8.10.36",
"@types/node": "10.17.5",
"@types/react": "16.9.43"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^24.0.23",
"@types/node": "10.17.5",
"@types/node-fetch": "^2.5.4",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"all-contributors-cli": "^6.11.2",
"eslint": "^6.6.0",
"eslint-config-airbnb-typescript": "^6.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lerna": "^3.19.0",
"lint-staged": "^9.4.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"typescript": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{json,md}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"scripts": {
"build": "tsc -b .",
"lint": "eslint --ext ts,tsx packages",
"lint-staged": "lint-staged",
"test": "jest",
"test:ci": "jest --ci --runInBand",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"version": "0.0.0"
}