-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.23 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
75
76
77
78
79
80
81
{
"name": "@upstatement/react-hooks",
"version": "1.0.2",
"description": "A collection of Upstatement's most-used React hooks",
"author": "Upstatement <[email protected]>",
"license": "ISC",
"keywords": [
"react",
"hooks",
"typescript",
"upstatement"
],
"main": "dist/cjs",
"module": "dist/esm",
"types": "dist/esm/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rollup -c --environment NODE_ENV:production",
"build:watch": "rollup -c -w",
"prepare": "npm run build",
"start": "npm run build:watch",
"test:watch": "jest --watchAll",
"test": "jest --collectCoverage"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^4.0.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.25",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"@upstatement/eslint-config": "^0.4.3",
"@upstatement/prettier-config": "^0.3.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.2.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"jest": "^25.2.2",
"jest-extended": "^0.11.5",
"jest-watch-typeahead": "^0.4.2",
"lerna": "^3.20.2",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"react": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rollup": "^2.3.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
}
}