-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.76 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
{
"name": "@doruk/hooks",
"version": "0.1.0",
"main": "dist",
"module": "src",
"scripts": {
"prestart": "npm run build",
"start": "parcel serve -d build example/index.html",
"prebuild": "rimraf dist",
"build": "babel src -sd dist",
"licenses": "npm run check -- --summary > LICENSES & npm run check -- --csv --exclude 'MIT,ISC,BSD' >> LICENSES",
"check": "license-checker --production --unknown",
"prepare": "npm run licenses"
},
"keywords": [
"react",
"hooks"
],
"author": "Doruk Kutlu",
"license": "MIT",
"dependencies": {
"core-js": "3",
"lodash": "^4.17.11",
"react-fetch-hook": "^1.3.2",
"react-hanger": "^1.1.4",
"react-use-form-state": "^0.9.0",
"react-use-intersection-observer": "^0.0.0-alpha.1",
"select-dom": "^5.0.1",
"use-media": "^1.3.0",
"use-onclickoutside": "^0.3.1"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-preset-minify": "^0.5.0",
"license-checker": "^25.0.1",
"parcel-bundler": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3",
"sass": "^1.17.3"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "last 3 versions",
"useBuiltIns": "entry",
"corejs": 3
}
],
"minify"
]
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d0ruk/hooks.git"
},
"bugs": {
"url": "https://github.com/d0ruk/hooks/issues"
},
"homepage": "https://github.com/d0ruk/hooks#readme",
"description": "hooked"
}