-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.73 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
{
"scripts": {
"start": "electron ./app --enable-logging",
"watch": "webpack-dev-server",
"dev": "NODE_ENV='development' npm run start",
"electron-rebuild": "electron-rebuild",
"postinstall": "install-app-deps",
"clean": "rm -rf ./dist",
"build": "rm -rf ./app/built && webpack -p --config webpack.config.production.js",
"pack": "npm run build && npm run clean && build --dir",
"dist": "npm run build && npm run clean && build --mac --linux deb tar.xz --win --x64"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.25.0",
"devtron": "^1.3.0",
"electron": ">=11.5.0",
"electron-builder": "^6.7.7",
"electron-devtools-installer": "^2.0.1",
"electron-rebuild": "^1.1.3",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"less": "^2.6.1",
"less-loader": "^2.2.2",
"node-libs-browser": "^1.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": ">=3.1.11"
},
"repository": {
"type": "git",
"url": "https://github.com/PolarisChen/Piece"
},
"build": {
"appId": "com.PolarisChen.PieceForMac",
"build.mac.category": "public.app-category.productivity",
"win": {
"iconUrl": "https://raw.githubusercontent.com/PolarisChen/Piece/master/build/icon.png"
},
"dmg": {
"contents": [
{
"x": 382,
"y": 220,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 220,
"type": "file",
"path": ""
}
]
}
}
}