-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
125 lines (125 loc) · 3.91 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
125
{
"name": "react-advanced-form",
"version": "1.7.2",
"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": "kettanaito@gmail.com",
"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": "node_modules/.bin/cypress open -e envName=dev",
"cypress:cli": "node_modules/.bin/cypress run --spec 'cypress/integration/index.js' --browser chrome",
"test:integration:dev": "node_modules/.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.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@cypress/webpack-preprocessor": "^4.0.3",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-centered": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addon-options": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-plugin-ramda": "^2.0.0",
"bootstrap": "^4.3.1",
"bundlesize": "^0.18.0",
"chai": "^4.2.0",
"create-react-class": "^15.6.3",
"cross-env": "^5.2.0",
"cypress": "^3.2.0",
"eslint": "^5.16.0",
"eslint-import-resolver-webpack": "^0.12.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-react": "^7.12.4",
"flow": "^0.2.3",
"jest": "^24.7.1",
"ncp": "^2.0.0",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"raw-loader": "^4.0.0",
"react": "^16.8.6",
"react-datepicker": "^2.5.0",
"react-dom": "^16.8.6",
"react-rangeslider": "^2.2.0",
"react-select": "^2.4.3",
"react-slider": "^0.11.2",
"recompose": "^0.30.0",
"regenerator-runtime": "^0.13.2",
"rimraf": "^3.0.0",
"start-server-and-test": "^1.9.0",
"storybook": "^1.0.0",
"style-loader": "^1.0.0",
"url": "^0.11.0",
"validator": "^11.0.0",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.1"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"invariant": "^2.2.4",
"rxjs": "^6.5.1"
}
}