-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 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
{
"version": "0.0.0",
"private": true,
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"install": "yarn build",
"build": "lerna run build",
"dev": "lerna run dev --parallel",
"format": "prettier-eslint --write \"**/*.{ts,tsx}\"",
"lint": "eslint --ext .ts,.tsx packages/*",
"test": "lerna run test",
"release": "lerna publish"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"linters": {
"*.{ts,tsx}": [
"prettier-eslint --write",
"git add",
"npm run lint"
]
},
"ignore": [
"examples/**/*"
]
},
"devDependencies": {
"@types/jest": "24.0.13",
"@typescript-eslint/eslint-plugin": "1.9.0",
"@typescript-eslint/parser": "1.9.0",
"codecov": "^3.5.0",
"eslint": "5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-import-resolver-typescript": "1.1.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "2.3.0",
"jest": "24.8.0",
"lerna": "^3.14.1",
"lint-staged": "8.1.7",
"prettier": "1.17.1",
"prettier-eslint-cli": "4.7.1",
"rollup": "1.12.1",
"rollup-plugin-typescript2": "0.21.0",
"ts-jest": "24.0.2",
"typescript": "3.4.5"
}
}