-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 926 Bytes
/
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
{
"name": "framer-export-mac-app",
"version": "1.0.0",
"description": "",
"main": "./config/main.js",
"scripts": {
"webpack": "webpack --config ./config/webpack.config.js --watch",
"electron": "electron ./config/main.js",
"start": "cross-env URL=\"dev\" concurrently --kill-others \"npm run webpack\" \"npm run electron\"",
"build": "rm -rf dist && cross-env URL=\"prod\" webpack --config ./config/webpack.config.js && electron-packager ./"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^4.1.0"
},
"devDependencies": {
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"coffee-loader": "^0.9.0",
"coffeescript": "^2.3.2",
"cross-env": "^5.2.0",
"electron": "^4.0.2",
"electron-packager": "^13.0.1",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
}
}