forked from vankop/jsoneditor-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.45 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
{
"name": "jsoneditor-react",
"version": "0.1.10",
"description": "React implementation of https://github.com/josdejong/jsoneditor",
"main": "es",
"module": "es",
"files": [
"es",
"dist",
"*.md",
"docs"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env BABEL_ENV=test NODE_ENV=test start-storybook -p 9001 -c .storybook",
"lint": "eslint src stories --ext .js --ext .jsx --fix --config .eslintrc.json",
"build:es": "cross-env BABEL_ENV=production NODE_ENV=production rollup -c rollup.es.config.js -i src/index.js -o es/index.js",
"build:umd": "cross-env BABEL_ENV=production NODE_ENV=production rollup -c rollup.umd.config.js -i src/index.js -o dist/jsoneditor-react.min.js",
"build": "npm run build:es && npm run build:umd && uglifycss es/editor.css > es/editor.min.css",
"prepublish": "npm run lint && npm run build",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vankop/jsoneditor-react.git"
},
"keywords": [
"react",
"jsoneditor",
"json"
],
"author": "Ivan Kopeykin",
"license": "MIT",
"bugs": {
"url": "https://github.com/vankop/jsoneditor-react/issues"
},
"homepage": "https://github.com/vankop/jsoneditor-react#readme",
"dependencies": {
"jsoneditor": "^5.13.2",
"prop-types": "^15.6.0"
},
"devDependencies": {
"@storybook/react": "^3.4.10",
"ajv": "^6.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"brace": "^0.11.0",
"cross-env": "^5.1.3",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-form": "^7.2.3",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^3.0.0",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-css-only": "^0.4.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^5.0.0",
"uglifycss": "=0.0.29"
},
"peerDependencies": {
"react": "^16.2.0"
}
}