-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.16 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
{
"name": "electron-starter",
"version": "0.1.0",
"description": "Opinionated electron.atom.io boilerplate / template.",
"main": "./app/main",
"scripts": {
"start": "npm run prod",
"startelectron": "electron ./app/main",
"dev": "gulp clean && gulp build --dev && npm run startelectron",
"prod": "gulp clean && gulp build --prod && npm run startelectron"
},
"author": "Yves Schelpe (ys@delegate-it.be)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aredfox/electron-starter"
},
"build": {
"appId": "electron-starter",
"productName": "electron-starter",
"category": "public.app-category.education",
"copyright": "Copyright © Delegate-IT.be",
"mac": {
"category": "public.app-category.education",
"icon": "src/data/build/icon.icns"
},
"win": {
"icon": "src/data/build/icon.ico"
},
"linux": {}
},
"directories": {
"output": "dist",
"buildResources": "src/data/build",
"app": "app"
},
"dependencies": {
"dot-object": "^1.5.4",
"moment": "^2.17.1",
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"devDependencies": {
"@types/dot-object": "^1.4.6",
"@types/electron": "^1.4.31",
"@types/node": "^7.0.4",
"@types/react": "^15.0.4",
"@types/react-dom": "^0.14.21",
"babel": "^6.5.2",
"babel-core": "^6.22.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"del": "^2.2.2",
"electron": "^1.4.15",
"electron-builder": "^11.7.0",
"font-awesome": "^4.7.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.1",
"gulp-cssmin": "^0.1.7",
"gulp-javascript-obfuscator": "^1.1.2",
"gulp-json-editor": "^2.2.1",
"gulp-less": "^3.3.0",
"gulp-rename": "^1.2.2",
"gulp-require-tasks": "^1.0.5",
"gulp-sourcemaps": "^2.4.0",
"gulp-typescript": "^3.1.4",
"gulp-uglify": "^2.0.1",
"gulp-util": "^3.0.8",
"load-plugins": "^2.1.2",
"material-design-lite": "^1.3.0",
"roboto-npm-webfont": "0.0.2",
"run-sequence": "^1.2.2",
"typescript": "^2.1.5",
"yargs": "^6.6.0"
}
}