-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.8 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.8 KB
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
{
"name": "jcod-react-parser",
"version": "0.4.2",
"description": "React Component for parsing JSON/JCOD object to produce an react tree",
"main": "dist/index.js",
"scripts": {
"start": "webpack --mode development --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"build:dev": "webpack --mode development",
"build": "webpack --mode production",
"prepublishOnly": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nkokla/jcod-react-parser.git"
},
"keywords": [
"jcod",
"react",
"json",
"parser"
],
"author": "Nicolas KOKLA",
"license": "MIT",
"bugs": {
"url": "https://github.com/nkokla/jcod-react-parser/issues"
},
"homepage": "https://github.com/nkokla/jcod-react-parser#readme",
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"ajv": "^5.5.2",
"babel-loader": "^8.0.6",
"chokidar-cli": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-app": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"prettier": "^1.18.2",
"prettier-eslint": "^8.8.2",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"peerDependencies": {
"prop-types": "^15.x.x",
"react": "^16.8.x",
"react-dom": "^16.8.x"
}
}