forked from dijonmusters/programming-helpdesk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "programming-helpdesk",
"description": "helpdesk application",
"author": "Jon Meyers",
"version": "0.1.0",
"productName": "programming-helpdesk",
"dependencies": {
"eslint-config-airbnb": "^16.1.0",
"moment": "^2.22.1",
"pouchdb": "^6.4.3",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-markdown": "^3.3.0",
"react-scripts": "1.1.1",
"semantic-ui-css": "2.2.12",
"semantic-ui-react": "0.78.2"
},
"main": "src/electron-starter.js",
"homepage": "./",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"pkg": "npm run build && build",
"postinstall": "electron-builder install-app-deps",
"dev": "node ./src/electron-wait-react.js"
},
"build": {
"appId": "com.electron.programming-helpdesk",
"extends": null,
"directories": {
"buildResources": "public",
"output": "release-builds",
"asar": false
}
},
"devDependencies": {
"electron": "^1.8.2",
"electron-builder": "19.26.3",
"electron-prebuilt-compile": "1.8.4",
"electron-rebuild": "^1.7.3"
}
}