-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
106 lines (106 loc) · 2.85 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@aaronuu/react-forms",
"version": "0.1.25",
"description": "Form state helper for react",
"main": "dist/index.js",
"module": "dist/react-forms.esm.js",
"author": "Aaron Williams",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/aaronnuu/react-forms"
},
"keywords": [
"react",
"forms",
"field",
"input"
],
"scripts": {
"analyze": "size-limit --why",
"reinstall": "rimraf node_modules && yarn",
"prebuild": "rimraf dist",
"build": "rollup -c && size-limit",
"prepublishOnly": "yarn build",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"create-react-context": "^0.2.3",
"lodash.debounce": "^4.0.8",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"lodash.unset": "^4.5.2",
"react-fast-compare": "^2.0.2"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@storybook/react": "^3.4.10",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^5.1.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^1.0.1",
"jest": "^23.4.1",
"jest-dom": "^1.8.1",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"prettier-eslint-cli": "^4.7.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-testing-library": "^4.1.2",
"rimraf": "^2.6.2",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-filesize": "^2.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^4.0.0",
"size-limit": "^0.18.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write --eslintPath=node_modules/eslint --prettierPath=node_modules/prettier",
"git add"
]
},
"size-limit": [
{
"path": "./dist/index.js",
"limit": "14 kB"
},
{
"path": "./dist/react-forms.esm.js",
"limit": "14 kB"
},
{
"path": "./dist/react-forms.umd.production.js",
"limit": "14 kB"
}
]
}