-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 923 Bytes
/
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
{
"name": "formover",
"version": "1.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Jared Palmer <[email protected]>",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"start": "tsc -w"
},
"peerDependencies": {
"react": ">=15",
"formik": ">=0.11",
"react-popper": ">=0.10.1"
},
"dependencies": {
"react-key-handler": "^1.0.1",
"react-onclickout": "^2.0.8"
},
"resolutions": {
"**/@types/react": "16.3.12",
"**/@types/react-dom": "16.0.5"
},
"devDependencies": {
"@types/prop-types": "^15.5.2",
"@types/react": "^16.3.12",
"@types/react-dom": "^16.0.5",
"formik": "^0.11.11",
"microbundle": "^0.4.4",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-popper": "^0.10.1",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
}
}