-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
100 lines (100 loc) · 2.89 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
{
"name": "react-material-ui-form",
"version": "1.1.7",
"description": "State and validation management for Material-UI form components",
"main": "dist/index.js",
"scripts": {
"build": "webpack -p && rm -Rf ./dist && cross-env NODE_ENV=production babel ./src -d ./dist",
"check": "npm run lint && npm run flow && npm run test",
"dev": "webpack-dev-server --mode development --entry=./examples/Root --open",
"flow": "flow",
"lint": "eslint -c .eslintrc.json ./src --no-eslintrc",
"prepare": "npm run check && npm run build",
"test": "node ./tools/windows-safe-jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voletiswaroop/react-material-ui-form.git"
},
"keywords": [
"react-material-ui-form-validation",
"react-material-ui-form",
"react-form-validation",
"react-form",
"material-form",
"material-ui-form",
"form",
"forms",
"react-form-radio-button",
"react-form-dropdown",
"react-form-select",
"react-form-checkbox",
"validation"
],
"files": [
"dist"
],
"author": "voletiswaroop",
"license": "MIT",
"bugs": {
"url": "https://github.com/voletiswaroop/react-material-ui-form/issues"
},
"homepage": "https://github.com/voletiswaroop/react-material-ui-form#readme",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"globals": {
"_": true
},
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"dependencies": {
"@material-ui/core": "^3.1.1",
"lodash": "^4.17.10",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"validator": "^9.4.1",
"react-jss": "^8.6.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.10",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"flow-bin": "^0.68.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.4",
"jest-enzyme": "^6.0.1",
"markdown-loader": "^2.0.2",
"prop-types": "^15.6.1",
"react-router-dom": "^4.3.1",
"shelljs": "^0.8.2",
"strip-loader": "^0.1.2",
"style-loader": "^0.20.3",
"webpack": "^4.19.0",
"webpack-cli": "^2.1.5",
"webpack-dev-server": "^3.1.4",
"yargs": "^11.0.0"
}
}