forked from TanStack/form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.73 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
{
"name": "react-form",
"version": "3.5.3",
"description": "React Form is a lightweight framework and utility for building powerful forms in React applications.",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component --title React Form",
"clean": "nwb clean-module && nwb clean-demo",
"start": "nwb serve-react-demo",
"test": "mocha-webpack --opts tests/mocha-webpack.opts",
"test:watch": "npm run test -- --watch",
"prepublishOnly": "yarn build",
"postPublish": "git push --tags",
"eslint": "eslint src/** --fix",
"format": "prettier-eslint src/**/*.js",
"startDocs": "gitdocs serve",
"buildDocs": "gitdocs build",
"serveDocs": "serve docs-dist -p 3000"
},
"authors": [
{
"name": "Joseph Puzzo",
"email": "[email protected]",
"url": "http://joepuzzo.github.io"
},
{
"name": "Tanner Linsley",
"email": "[email protected]",
"url": "http://github.com/tannerlinsley"
}
],
"keywords": [
"react",
"reactjs",
"redux",
"react-redux",
"redux-form",
"form",
"react-form",
"async",
"async-form",
"asynchronous-form",
"asynchronous"
],
"repository": {
"type": "git",
"url": "https://github.com/react-tools/react-form"
},
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.10",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"peerDependencies": {
"react": "^15.6.1 || 16",
"react-dom": "^15.6.1 || 16"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"bootstrap": "^4.0.0-alpha.6",
"chai": "^4.1.1",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.1.3",
"css-loader": "^0.28.5",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.5.0",
"eslint-config-react-tools": "^1.0.10",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"gitdocs": "^1.5.17",
"jsdom": "^11.6.0",
"mocha": "^5.0.0",
"mocha-webpack": "^1.0.1",
"nwb": "^0.21.2",
"nwb-sass": "^0.8.2",
"prettier-eslint-cli": "^4.7.0",
"react": "^16.2.0",
"react-addons": "^0.9.1-deprecated",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-prism": "^4.3.2",
"react-router-dom": "^4.2.2",
"react-router-hash-link": "^1.1.1",
"redux-mock-store": "^1.5.1",
"serve": "^6.5.2",
"sinon": "^4.1.6"
}
}