-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
{
"name": "@cpepin/hookbook",
"repository": {
"type": "git",
"url": "https://github.com/cpepin/hookbook.git"
},
"version": "1.0.2",
"description": "A collection of helpful React hooks!",
"files": [
"lib/*"
],
"main": "lib/bundle.umd.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && rollup --config rollup.esm.config.js && rollup --config rollup.umd.config.js"
},
"keywords": [],
"author": "Cam Pepin <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.22",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"core-js": "^3.6.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"regenerator-runtime": "^0.13.3",
"rollup": "^2.0.6",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-typescript2": "^0.26.0",
"tslib": "^1.11.0",
"typescript": "^3.8.2"
},
"peerDependencies": {
"react": "^16.8.6"
},
"dependencies": {
"lodash": "^4.17.15",
"p-cancelable": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": "eslint --cache --fix"
}
}