-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.7 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
{
"name": "react-schema-final-form-material-ui",
"main": "./lib/index.js",
"version": "0.4.2",
"title": "react-schema-final-form-material-ui",
"description": "The theme for react-schema-final-form based on material-ui-next.",
"keywords": [
"JSON Schema",
"React",
"Final Form",
"Material-UI"
],
"author": {
"name": "Shuo Wang",
"url": "https://github.com/leuction"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/leuction/react-schema-final-form-material-ui"
},
"engines": {
"npm": ">=3.0.0",
"node": ">=6.0.0"
},
"dependencies": {
"lodash.isstring": "^4.0.1"
},
"devDependencies": {
"@material-ui/core": "^1.0.0",
"@material-ui/icons": "^1.0.0",
"@storybook/addon-actions": "^3.3.15",
"@storybook/addon-links": "^3.3.15",
"@storybook/addons": "^3.3.15",
"@storybook/react": "^3.3.15",
"babel-core": "6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^22.4.3",
"babel-plugin-external-helpers": "6.18.0",
"babel-plugin-lodash": "^3.3.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"browser-sync": "2.18.13",
"enzyme": "^3.3.0",
"eslint": "^4.18.2",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.7.0",
"final-form": "^4.4.0",
"final-form-arrays": "^1.0.4",
"jest": "^22.4.2",
"npm-run-all": "4.1.2",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-final-form": "^3.1.5",
"react-final-form-arrays": "^1.0.4",
"rollup": "^0.59.1",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0",
"uglify-es": "^3.3.9"
},
"scripts": {
"start": "npm run storybook",
"prebuild": "rimraf lib",
"build": "rollup -c config/prod.js",
"prebuild:dev": "rimraf lib",
"build:dev": "rollup -c config/dev.js -w",
"test": "echo \"Error: no test specified\" && exit 0",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -c .storybook -o .doc",
"prepare": "npm run build"
},
"peerDependencies": {
"@material-ui/core": "^1.0.0",
"@material-ui/icons": "^1.0.0",
"ajv": "^6.3.0",
"final-form": "^4.4.0",
"final-form-arrays": "^1.0.4",
"prop-types": "^15.6.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-final-form": "^3.1.5",
"react-final-form-arrays": "^1.0.4"
}
}