-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
79 lines (79 loc) · 2.38 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
{
"name": "jsoneditor-react",
"version": "3.1.2",
"description": "React implementation of https://github.com/josdejong/jsoneditor",
"main": "es",
"module": "es",
"files": [
"es",
"*.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": "npm run build:es && uglifycss es/editor.css > es/editor.min.css",
"prepublishOnly": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vankop/jsoneditor-react.git"
},
"keywords": [
"react",
"jsoneditor",
"json"
],
"author": "Ivan Kopeykin <ivan.kopeykin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vankop/jsoneditor-react/issues"
},
"homepage": "https://github.com/vankop/jsoneditor-react#readme",
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@storybook/addon-actions": "^5.2.8",
"@storybook/react": "^5.2.8",
"ajv": "^6.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"brace": "^0.11.0",
"cross-env": "^5.1.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"jsoneditor": "^9.0.0",
"react": "^16.10.2",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-form": "^7.2.3",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-css-only": "^2.0.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^6.0.4",
"uglifycss": "=0.0.29"
},
"peerDependencies": {
"react": "16 || 17",
"jsoneditor": "^7.0.0 || ^8.0.0 || ^9.0.0"
},
"browserslist": [
"defaults"
]
}