forked from TanStack/form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3 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
{
"name": "react-form",
"version": "2.14.4",
"description": "React Form is a lightweight framework and utility for building powerful forms in React applications.",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"test": "NODE_ENV=test mocha-webpack --opts test/mocha-webpack.opts",
"test:watch": "npm run test -- --watch",
"start": "NODE_ENV=development webpack-dev-server -d --config config/webpack/webpack.dev.config.js --port 4005 --hot",
"build:dev": "NODE_ENV=development webpack --config config/webpack/webpack.dev.config.js",
"build:dist": "NODE_ENV=production webpack -p --config config/webpack/webpack.dist.config.js",
"build:docs": "NODE_ENV=production webpack -p --config config/webpack/webpack.prod.config.js",
"eslint": "eslint src/** --fix",
"preversion": "npm test",
"version": "npm run build:dist",
"postpublish": "git push --tags"
},
"author": {
"name": "Joseph Puzzo",
"email": "[email protected]",
"url": "http://joepuzzo.github.io"
},
"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": {
"babel-runtime": "^6.26.0",
"circular-json": "^0.4.0",
"classnames": "^2.2.5",
"prop-types": "^15.5.10",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
},
"peerDependencies": {
"react": "^15.6.1 || 16",
"react-dom": "^15.6.1 || 16"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bootstrap": "^4.0.0-alpha.6",
"chai": "^4.1.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.5",
"enzyme": "^2.9.1",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"file-loader": "^1.1.5",
"jsdom": "^9.9.1",
"mocha": "^3.5.0",
"mocha-webpack": "^0.7.0",
"node-sass": "^4.5.3",
"prismjs": "^1.6.0",
"raw-loader": "^0.5.1",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^15.6.1",
"react-hot-loader": "^3.0.0-beta.7",
"react-prism": "^4.3.0",
"react-router-dom": "^4.2.2",
"react-router-hash-link": "^1.1.1",
"react-test-renderer": "^15.6.2",
"sass-loader": "^6.0.6",
"sinon": "^3.2.1",
"style-loader": "^0.18.2",
"uglify-js": "^3.1.10",
"url-loader": "^0.5.9",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"webpack-node-externals": "^1.6.0"
}
}