forked from rucio/notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.96 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.96 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "rucio-notifier",
"description": "Rucio Notifier Application",
"homepage": "./",
"version": "1.0.0",
"private": true,
"main": "public/electron.js",
"license": "Apache-2.0",
"author": {
"name": "Vivek Nigam",
"email": "viveknigam.nigam3@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rucio/notifier.git"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"axios": "^0.19.2",
"cors": "^2.8.5",
"electron-is-dev": "^1.2.0",
"express": "^4.17.1",
"js-time-diff": "^1.0.0",
"nan": "2.14.1",
"react": "^16.13.1",
"react-cookie": "^4.0.3",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"redux": "^4.0.5"
},
"scripts": {
"start": "PORT=3003 react-scripts start",
"start-win": "set PORT=3003 && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron": "electron .",
"electron-dev": "ELECTRON_START_URL=http://localhost:3000 electron .",
"dev": "concurrently \"npm start\" \"wait-on http://localhost:3003 && npm run dev-server\"",
"dev-server": "cd server && nodemon app.js",
"preclean-build": "rm -rf dist node_modules package-lock.json",
"clean-build": "npm install && npm run electron-pack",
"clean-build-safe": "rm -rf dist && npm run electron-pack",
"electron-pack": "electron-builder -c.extraMetadata.main=build/electron.js",
"preelectron-pack": "npm run build"
},
"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"
]
},
"devDependencies": {
"concurrently": "^5.2.0",
"electron": "7.2.4",
"electron-builder": "^22.7.0",
"nodemon": "^2.0.4",
"wait-on": "^5.0.1"
},
"build": {
"appId": "com.rucio.notifier",
"files": [
"build/**/*",
"server/**/*",
"node_modules/**/*"
],
"linux": {
"target": [
"deb",
"rpm",
"snap",
"AppImage"
],
"category": "Utilities",
"icon": "build/icons",
"executableName": "rucio-notifier"
},
"mac": {
"target": [
"default",
"dmg"
],
"category": "public.app-category.utilities",
"icon": "build/icons",
"type": "distribution"
},
"win": {
"target": [
"msi",
"portable"
],
"icon": "build/icons",
"publisherName": "Rucio"
},
"directories": {
"buildResources": "assets"
}
},
"proxy": "http://localhost:3004"
}