-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
70 lines (70 loc) · 1.48 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
{
"name": "use-events",
"version": "1.4.2",
"license": "MIT",
"description": "Event Hooks",
"repository": {
"type": "git",
"url": "https://github.com/sandiiarov/use-events.git"
},
"scripts": {
"build": "pika build",
"test": "jest",
"tsc": "tsc --noEmit"
},
"babel": {
"presets": [
"@babel/preset-typescript",
"@babel/preset-react"
],
"env": {
"test": {
"presets": [
"@babel/preset-env"
]
}
}
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"peerDependencies": {
"react": ">=16.8.1"
},
"dependencies": {
"resize-observer-polyfill": "1.5.1"
},
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/preset-env": "7.6.3",
"@babel/preset-react": "7.6.3",
"@babel/preset-typescript": "7.6.0",
"@pika/pack": "0.5.0",
"@pika/plugin-build-node": "0.6.1",
"@pika/plugin-build-types": "0.6.1",
"@pika/plugin-build-web": "0.6.1",
"@pika/plugin-standard-pkg": "0.6.1",
"@testing-library/react": "9.3.0",
"@testing-library/react-hooks": "2.0.3",
"@types/jest": "24.0.18",
"@types/react": "16.9.15",
"jest": "24.9.0",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-test-renderer": "16.9.0",
"typescript": "3.9.10"
}
}