-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.34 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
{
"name": "codegenerator",
"version": "1.6.0",
"description": "",
"main": "main/index.js",
"scripts": {
"start": "concurrently -c 'red,green' --names 'web,electron' 'umi dev' 'electron .' ",
"build": "./node_modules/.bin/electron-builder build",
"buildWeb": "umi build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"build": {
"appId": "com.kongyuehui.app",
"productName": "swaggerUI",
"mac": {
"target": "dmg"
},
"files": [
"package.json",
"build/*",
"main/*",
"!node_modules/**/*",
"node_modules/electron-is-dev",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin",
"!**/node_modules/.cache",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
"!.editorconfig",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
"!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
"!**/{appveyor.yml,.travis.yml,circle.yml}",
"!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}"
]
},
"dependencies": {
"antd": "^3.15.0",
"dva": "^2.5.0-beta.2",
"electron-find": "^1.0.6",
"electron-is-dev": "^1.1.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-json-view": "^1.19.1",
"react-syntax-highlighter": "^15.4.4"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"concurrently": "^5.0.2",
"electron": "^9.4.0",
"electron-builder": "^22.11.7",
"electron-react-devtools": "^0.5.3",
"eslint": "^5.4.0",
"eslint-config-umi": "^1.4.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.11.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"react-test-renderer": "^16.7.0",
"umi": "^2.6.3",
"umi-plugin-react": "^1.6.0"
}
}