forked from IBM/jira-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.07 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "jira-notifications",
"version": "0.1.0",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"dependencies": {
"@carbon/grid": "^11.9.0",
"@carbon/icons-react": "^11.10.0",
"@carbon/themes": "^10.53.1",
"@carbon/type": "^10.43.1",
"@reduxjs/toolkit": "^1.5.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"carbon-components": "^10.55.1",
"carbon-components-react": "^7.55.1",
"carbon-icons": "7.0.7",
"cors": "^2.8.5",
"electron-is-dev": "^2.0.0",
"express": "^4.17.1",
"http-proxy-middleware": "^2.0.1",
"morgan": "^1.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"sass": "^1.56.1"
},
"devDependencies": {
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"electron": "^14.0.0",
"electron-builder": "^22.11.7",
"node-fetch": "^3.3.0",
"redux-logger": "^3.0.6",
"wait-on": "^6.0.0"
},
"scripts": {
"start": "node ./server/server.js",
"ui": "react-scripts start",
"dev": "concurrently \"npm start\" \"npm run ui\"",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron-dev": "PORT=5556 JIRA_URL=https://jira.sec.**REMOVE**.com/rest/api/2 REACT_APP_SERVER=http://localhost:7070 concurrently \"BROWSER=none npm run dev\" \"wait-on http://localhost:5556 && electron .\"",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"build": {
"appId": "com.example.app",
"files": [
"dist/**/*",
"package.json",
"./public/electron.js"
],
"directories": {
"buildResources": "assets"
}
}
}