-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.34 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
82
83
84
85
86
87
{
"name": "@1px.one/react-hooks",
"version": "1.0.2",
"description": "Helpful react hooks",
"keywords": [
"react",
"hook",
"hooks",
"react-hooks"
],
"author": "Artemiy Vereshchinskiy <artemiy.vereshchinskiy@gmail.com>",
"homepage": "https://github.com/1pxone/react-hooks#readme",
"license": "ISC",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1pxone/react-hooks.git"
},
"scripts": {
"build": "npx tsc && npx babel ./src --out-dir lib",
"test": "echo \"No tests to execute\" && exit 0",
"prebuild": "rimraf ./dist"
},
"bugs": {
"url": "https://github.com/1pxone/react-hooks/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"resize-observer-polyfill": "^1.5.1"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-react-display-name": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/plugin-transform-typescript": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"dot-json": "^1.2.0",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"babel-jest": "^24.9.0",
"babel-plugin-add-react-displayname": "^0.0.5",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-typescript-to-proptypes": "^1.0.0",
"husky": "^4.2.5",
"npx": "^10.2.2",
"prettier": "^2.0.5",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rimraf": "^3.0.2",
"tsc": "^1.20150623.0",
"tslint": "^5.20.0",
"typescript": "^3.8.3"
}
}