-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.22 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "seeker",
"version": "0.0.1",
"author": "Zhuo.Li <zhuo.li@56qq.com>",
"description": "seeker desktop",
"license": "ISD",
"main": "./dist/electron/main.js",
"scripts": {
"dev": "node .build-config/dev.run.js",
"start": "npm run dev",
"build": "node .build-config/build.js && electron-builder",
"build:dir": "node .build-config/build.js && electron-builder --dir",
"build:clean": "cross-env BUILD_TARGET=clean node .build-config/build.js",
"build:web": "cross-env BUILD_TARGET=web node .build-config/build.js",
"lint": "eslint --ext .js,.jsx -f ./node_modules/eslint-friendly-formatter src test",
"lint:fix": "eslint --ext .js,.jsx -f ./node_modules/eslint-friendly-formatter --fix src test",
"pack": "npm run pack:main && npm run pack:renderer",
"pack:main": "cross-env NODE_ENV=production webpack --progress --colors --config .build-config/webpack.main.js",
"pack:renderer": "cross-env NODE_ENV=production webpack --progress --colors --config .build-config/webpack.renderer.js",
"postinstall": "npm run lint:fix"
},
"build": {
"productName": "seeker",
"appId": "com.topgrd.seeker",
"directories": {
"output": "build"
},
"files": [
"dist/electron/**/*"
],
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "build/icons/icon.icns"
},
"win": {
"icon": "build/icons/icon.ico"
},
"linux": {
"icon": "build/icons"
}
},
"dependencies": {
"react": "^16.8.2",
"react-dom": "^16.8.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"cfonts": "^2.4.2",
"chalk": "^2.4.2",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"del": "^3.0.0",
"devtron": "^1.4.0",
"electron": "^4.0.5",
"electron-builder": "^20.38.5",
"electron-debug": "^2.1.0",
"electron-devtools-installer": "^2.2.4",
"eslint": "^5.14.1",
"eslint-config-hcb": "^1.1.3",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"multispinner": "^0.2.1",
"node-loader": "^0.6.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.5",
"webpack-chain": "^5.2.0",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.2.1"
}
}