-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
82 lines (82 loc) · 2.4 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
80
81
82
{
"name": "dva-boot-desktop",
"description": "dva-boot-desktop",
"version": "0.1.0",
"author": "weiq",
"repository": {
"type": "git",
"url": "git@github.com:LANIF-UI/dva-boot-desktop.git"
},
"license": "MIT",
"main": "./public/electron.js",
"scripts": {
"start:app": "cross-env NODE_ENV=development electron .",
"start:web": "cross-env BROWSER=none PORT=3210 react-app-rewired start",
"start": "concurrently -k -n \"🙉 web,🙈 app\" -c \"yellow,magenta\" \"npm run start:web\" \"wait-on http://localhost:3210/ && npm run start:app\"",
"build:web": "react-app-rewired build",
"build:app": "cross-env NODE_ENV=production electron-builder",
"build": "npm run build:web && npm run build:app",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject"
},
"dependencies": {
"acorn": "^6.0.4",
"acorn-jsx": "^5.0.1",
"acorn-walk": "^6.1.1",
"antd": "^3.13.2",
"classnames": "^2.2.5",
"cmn-utils": "^1.0.7",
"download": "^7.1.0",
"dva": "^2.4.0",
"dva-loading": "^2.0.5",
"ejs": "^2.6.1",
"electron-is": "^3.0.0",
"escodegen": "^1.11.0",
"fetch-mock": "^6.4.3",
"fix-path": "^2.1.0",
"fs-extra": "^7.0.1",
"object.omit": "^3.0.0",
"react": "^16.5.0",
"react-dom": "^16.5.0"
},
"devDependencies": {
"autodll-webpack-plugin": "^0.3.8",
"babel-plugin-dva-hmr": "^0.4.0",
"babel-plugin-import": "^1.6.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"concurrently": "^4.0.1",
"cross-env": "^5.2.0",
"electron": "^2.0.9",
"electron-builder": "^20.28.4",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"mockjs": "^1.0.1-beta3",
"prop-types": "^15.6.1",
"react-app-rewire-less-modules": "1.1.0",
"react-app-rewire-unplug": "^0.9.0",
"react-app-rewired": "^1.3.8",
"react-scripts": "1.1.5",
"wait-on": "^3.0.1",
"webpack-parallel-uglify-plugin": "^1.1.0",
"yarn": "^1.12.3"
},
"homepage": "./",
"build": {
"appId": "com.electron.lanif",
"mac": {
"category": "public.app-category.developer-tools"
},
"directories": {
"buildResources": "public"
},
"files": [
"!node_modules/antd",
"!node_modules/dva",
"!node_modules/react",
"!node_modules/react-dom",
"!node_modules/fetch-mock"
]
}
}