-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.78 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
{
"name": "clipbot",
"version": "0.1.0",
"productName": "ClipBot",
"private": true,
"main": "dist/app.js",
"dependencies": {
"date-fns": "1.30.1",
"electron-serve": "0.2.0",
"faker": "4.1.0"
},
"scripts": {
"app": "electron .",
"clean": "rimraf dist build release-builds",
"start:dev": "npm run build:electron && npm run app",
"start": "nodemon --watch src --watch app --exec 'cross-env NODE_ENV=development npm run start:dev'",
"react": "react-scripts start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:react": "react-scripts build",
"build:electron": "babel src/app -d dist --copy-files",
"build:package": "npx electron-packager . --overwrite --platform=darwin --arch=x64 --icon=dist/icons/mac/icon.icns --prune=true --out=release-builds",
"build:dmg": "npx electron-installer-dmg release-builds/ClipBot-darwin-x64/ClipBot.app ClipBot --out=release-builds/mac --icon=dist/icons/mac/icon.icns",
"prod": "npm-run-all clean build:*",
"contributors:add": "npx all-contributors add",
"contributors:generate": "npx all-contributors generate"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.3.4",
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/preset-env": "7.3.4",
"all-contributors-cli": "6.1.2",
"cross-env": "5.2.0",
"electron": "4.0.6",
"electron-installer-dmg": "2.0.0",
"electron-packager": "13.1.1",
"node-sass": "4.11.0",
"nodemon": "1.18.10",
"npm-run-all": "4.1.5",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-scripts": "2.1.5",
"rimraf": "2.6.3"
}
}