-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "svrx-plugin-json-viewer",
"version": "1.0.2",
"description": "The svrx plugin for json-viewer",
"main": "index.js",
"keywords": [
"svrx",
"svrx-plugin",
"json-viewer"
],
"engines": {
"svrx": "^1.0.0"
},
"author": "leeluolee <[email protected]>",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "webpack",
"dev": "webpack -w --config webpack.config.js --mode development"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@svrx/eslint-config": "^1.0.0",
"babel-loader": "^8.0.5",
"eslint": "^6.2.0",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-json-view": "^1.19.1",
"requireg": "^0.2.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"license": "MIT"
}