-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 3.86 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "campusnet-electron",
"productName": "CampusNetSync",
"version": "1.0.11",
"description": "Sync CampusNet files to your computer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tmpethick/campusnet-electron"
},
"main": "app/main.js",
"author": {
"name": "Thomas Pethick",
"email": "[email protected]",
"url": "pethick.dk"
},
"engines" : { "node" : ">=7.10.1" },
"electronVersion": "1.8.2",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "NODE_ENV=development electron ./app",
"watch": "NODE_ENV=development webpack-dev-server --hot --inline",
"test": "mocha --watch",
"test-debug": "node --harmony $(which bugger) ./node_modules/mocha/bin/_mocha --watch",
"compile": "NODE_ENV=production webpack -p",
"pack": "source .config && npm run compile && electron-builder -mw --ia32 --dir",
"dist": "source .config && npm run compile && DEBUG=electron-builder electron-builder -mw --ia32",
"release": "source .config && npm run compile && electron-builder -mw --ia32 --publish always",
"publish-gh-pages": "git subtree push --prefix gh-pages/build origin gh-pages"
},
"build": {
"appId": "dk.pethick.campusnetsync.mac",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
"app/app"
],
"mac": {
"category": "public.app-category.utilities"
},
"dmg": {
"contents": [
{
"x": 410,
"y": 100,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 100,
"type": "file"
}
]
},
"publish": [
{
"provider": "github",
"owner": "tmpethick",
"repo": "campusnet-electron"
}
]
},
"keywords": [
"campusnet",
"dtu",
"sync",
"electron-app",
"electron"
],
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.2",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"chai": "^3.5.0",
"css-loader": "^0.21.0",
"electron": "1.8.2",
"electron-builder": "^20.0.4",
"eslint": "^3.15.0",
"eslint-plugin-react": "^6.10.0",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"react-addons-test-utils": "^0.14.7",
"redux-devtools": "^3.1.1",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.4",
"sass-loader": "^3.0.0",
"style-loader": "^0.13.0",
"webpack": "1.12.15",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"auto-launch": "^2.0.1",
"bluebird": "^3.2.1",
"cheerio": "^0.20.0",
"cron": "^1.1.0",
"electron-debug": "^0.5.0",
"electron-gh-releases": "^2.0.3",
"electron-log": "^2.2.14",
"electron-updater": "^2.20.1",
"file-loader": "^0.8.5",
"form-data": "^0.2.0",
"immutable": "^3.7.6",
"ionicons": "^2.0.1",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^7.2.2",
"json-loader": "^0.5.4",
"menubar": "^5.2.3",
"mkdirp": "^0.5.1",
"mv": "^2.1.1",
"node-cron": "^1.1.1",
"node-fetch": "^1.3.3",
"open": "0.0.5",
"react": "^0.14.3",
"react-addons-css-transition-group": "^0.14.7",
"react-dom": "^0.14.3",
"react-dropzone": "^3.3.0",
"react-pure-render": "^1.0.2",
"react-redux": "^4.4.0",
"react-router": "^2.0.0",
"redux": "^3.3.1",
"redux-immutable": "^3.0.6",
"redux-localstorage": "^0.4.0",
"redux-thunk": "^1.0.3",
"sanitize-filename": "^1.5.3",
"shortid": "^2.2.4",
"uuid-js": "^0.7.5"
}
}