-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
123 lines (123 loc) · 4.49 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
{
"name": "Timesheets",
"productName": "Timesheets",
"version": "0.0.1",
"description": "A timesheet keeping app based on electron",
"main": "dist/main/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-register --recursive --require ./test/setup.js test/**/*.spec.js",
"test-watch": "yarn test -- --watch",
"test-e2e": "cross-env NODE_ENV=test mocha --compilers js:babel-register --require ./test/setup.js --require co-mocha ./test/e2e.js",
"lint": "eslint app test *.js",
"hot-server": "node -r babel-register server.js",
"build-main": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.electron.js --progress --profile --colors && cp app/package.json dist/",
"build-renderer": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.production.js --progress --profile --colors && cp -R app/renderer/assets dist/renderer",
"build": "yarn build-main && yarn build-renderer",
"start": "cross-env NODE_ENV=production electron ./",
"start-hot": "cross-env HOT=1 NODE_ENV=development electron -r babel-register -r babel-polyfill ./app/main/index",
"dev": "concurrently --kill-others \"yarn hot-server\" \"yarn start-hot\"",
"webfont:roboto": "webfont-dl \"https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en\" -o app/renderer/assets/css/fonts/roboto.global.css --woff1=data --svg=omit --ttf=omit --eot=omit",
"webfont:material-icons": "webfont-dl \"https://fonts.googleapis.com/icon?family=Material+Icons\" -o app/renderer/assets/css/fonts/material-icons.global.css --woff1=data --svg=omit --ttf=omit --eot=omit",
"postinstall": "electron-builder install-app-deps && cd app/ && yarn",
"dist": "yarn build && electron-builder",
"release": "yarn build && ./node_modules/.bin/build"
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hardchor/timesheets.git"
},
"author": "Burkhard Reffeling",
"license": "MIT",
"bugs": {
"url": "https://github.com/hardchor/timesheets/issues"
},
"keywords": ["timesheet", "time", "tracking", "electron"],
"homepage": "https://github.com/hardchor/timesheets#readme",
"dependencies": {
"asar": "^0.12.2",
"babel-core": "^6.14.0",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-webpack-loaders": "^0.7.1",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"chromedriver": "^2.23.1",
"concurrently": "^2.0.0",
"cross-env": "^2.0.0",
"css-loader": "^0.24.0",
"del": "^2.2.2",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.2.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"fbjs-scripts": "^0.7.1",
"jsdom": "^9.4.2",
"json-loader": "^0.5.4",
"minimist": "^1.2.0",
"mocha": "^3.0.2",
"node-libs-browser": "^1.0.0",
"react": "^15.0.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.0.1",
"selenium-webdriver": "^2.53.1",
"sinon": "^1.17.3",
"source-map-support": "^0.4.0",
"style-loader": "^0.13.1",
"webfont-dl": "^0.1.2",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"devDependencies": {
"electron": "^1.4.6",
"electron-builder": "^19.26.3",
"electron-rebuild": "^1.1.3"
},
"devEngines": {
"node": "^8.4.0"
},
"contributors": ["Jack Wilkinson (https://github.com/guacjack)"],
"build": {
"appId": "hardchor.timesheets",
"productName": "Timesheets",
"compression": "normal",
"asar": true,
"mac": {
"category": "public.app-category.productivity"
},
"dmg": {
"contents": [
{
"x": 192,
"y": 344
},
{
"x": 448,
"y": 344,
"type": "link",
"path": "/Applications"
}
]
},
"directories": {
"app": "dist",
"output": "release"
}
},
"directories": {
"app": "./dist/",
"output": "./release/"
}
}