forked from kettanaito/react-advanced-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "react-advanced-form",
"version": "1.6.7",
"description": "Functional reactive forms in React. Multi-layer validation, field grouping, reactive props, and much more.",
"main": "lib/index.js",
"license": "MIT",
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kettanaito/react-advanced-form.git"
},
"author": {
"name": "Artem Zakharchenko",
"email": "[email protected]",
"url": "https://github.com/kettanaito"
},
"keywords": [
"react",
"form",
"react-form",
"react-advanced-form",
"raf",
"advanced",
"dynamic props",
"reactive props",
"rxprops",
"field group",
"field grouping",
"fields group",
"validation",
"form validation",
"field validation",
"async validation",
"multi-level validation"
],
"scripts": {
"start": "cross-env NODE_ENV=development webpack -w",
"storybook": "cross-env NODE_ENV=development start-storybook -p 6009 -s ./",
"flow": "flow",
"prettify": "prettier src/**/*.js cypress/integration/**/*.{js,jsx} examples/**/*.{js,jsx} --write",
"clean": "rimraf ./lib && exit 0",
"build": "npm run clean && cross-env NODE_ENV=production webpack",
"build:storybook": "cross-env NODE_ENV=production build-storybook",
"test:unit": "cross-env NODE_ENV=production jest",
"cypress": "$(npm bin)/cypress open -e envName=dev",
"cypress:cli": "$(npm bin)/cypress run --spec 'cypress/integration/index.js' --browser chrome",
"test:integration:dev": "$(npm bin)/cypress run -e envName=dev --spec cypress/integration/index.js --headed --no-exit",
"test:integration": "npm run cypress:cli",
"test": "npm run test:unit",
"prepublishOnly": "npm run build && npm test"
},
"bundlesize": [
{
"path": "lib/index.js",
"maxSize": "90 kB"
}
],
"peerDependencies": {
"react": "^15.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@cypress/webpack-preprocessor": "^4.0.2",
"@storybook/addon-actions": "^4.0.9",
"@storybook/addon-centered": "^4.0.8",
"@storybook/addon-links": "^4.0.9",
"@storybook/addon-options": "^4.0.8",
"@storybook/addons": "^4.0.9",
"@storybook/react": "^4.0.9",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-ramda": "^1.6.3",
"bootstrap": "^4.1.3",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"cypress": "^3.1.2",
"eslint": "^5.9.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"flow": "^0.2.3",
"jest": "^23.6.0",
"ncp": "^2.0.0",
"prop-types": "^15.6.2",
"raw-loader": "^0.5.1",
"react": "^16.6.3",
"react-datepicker": "^2.0.0",
"react-dom": "^16.6.3",
"react-rangeslider": "^2.2.0",
"react-select": "^2.1.2",
"react-slider": "^0.11.2",
"recompose": "^0.30.0",
"regenerator-runtime": "^0.12.1",
"rimraf": "^2.6.2",
"start-server-and-test": "^1.7.11",
"storybook": "^1.0.0",
"style-loader": "^0.23.1",
"url": "^0.11.0",
"validator": "^10.9.0",
"webpack": "^4.26.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"bundlesize": "^0.17.1",
"hoist-non-react-statics": "^3.1.0",
"invariant": "^2.2.4",
"ramda": "^0.26.0",
"rxjs": "^6.3.3"
}
}