-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.04 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.04 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
{
"name": "bloomstack-timer-app",
"productName": "Bloomstack Timer",
"version": "1.4.0",
"description": "An app to track work hours on erpnext based servers",
"main": "main/index.js",
"private": false,
"scripts": {
"update-sentry": "node sentry-symbols.js",
"ship": "nwb clean && nwb build && electron-builder -p always",
"flow": "flow",
"flow-watch": "watch \"cls && flow\" ./src --filter=./flow-filter.js --wait=1 --interval=1 --ignoreDotFiles",
"clean": "nwb clean",
"start": "npm run server",
"server": "node dev-server.js --run-electron",
"test": "nwb test",
"test:watch": "nwb test --server",
"build:icons": "node build_icons.js",
"build": "nwb clean && nwb build && electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.digithinkit.timerapp",
"files": [
"!.electron-symbols/**",
"!releases/**",
"!test/**",
"!*.log",
"!*.dist"
],
"directories": {
"output": "releases",
"app": "."
},
"publish": {
"provider": "s3",
"bucket": "timer-app",
"acl": "public-read"
},
"dmg": {},
"win": {
"target": "NSIS"
},
"linux": {
"target": [
{
"target": "deb"
}
]
}
},
"dependencies": {
"@blueprintjs/core": "^3.11.0",
"@blueprintjs/datetime": "^3.6.0",
"@blueprintjs/select": "^3.5.0",
"@blueprintjs/table": "^3.4.0",
"@sentry/electron": "^0.15.0",
"bloom-conditionals": "^1.0.1",
"bloom-day-timeline": "ssh://git@github.com:DigiThinkIT/bloom-day-timeline.git",
"bloom-nav-column": "ssh://git@github.com:DigiThinkIT/bloom-nav-column.git",
"bootstrap": "^4.2.1",
"classnames": "^2.2.6",
"desktop-idle": "^1.1.1",
"electron-log": "^2.2.17",
"electron-settings": "^3.2.0",
"electron-updater": "^4.0.0",
"electron-window-state": "^5.0.3",
"emotion": "^9.2.4",
"esm": "^3.1.0",
"jquery": "^3.3.1",
"keytar": "^4.2.1",
"modern-normalize": "^0.5.0",
"moment": "^2.23.0",
"moment-duration-format": "^2.2.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-hot-loader": "^4.6.3",
"react-measure": "^2.2.2",
"react-transition-group": "^2.5.3"
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5",
"singleQuote": true,
"semi": false,
"jsxBracketSameLine": false,
"bracketSpacing": true
},
"devDependencies": {
"@sentry/wizard": "^0.12.1",
"babel-flow-types": "^1.2.3",
"babel-preset-env": "^1.7.0",
"del-cli": "^1.1.0",
"electron": "^4.0.1",
"electron-builder": "^20.28.4",
"electron-devtools-installer": "^2.2.4",
"electron-rebuild": "^1.8.2",
"express": "^4.16.3",
"flow-bin": "^0.91.0",
"minimist": "^1.2.0",
"nwb": "0.23.x",
"nwb-less": "^0.7.1",
"png2icons": "^1.0.1",
"sharp": "^0.21.2",
"watch": "^1.0.2"
},
"homepage": "https://digithinkit.com",
"author": "Felipe Orellana <forellana@digithinkit.com>",
"license": "MIT",
"repository": ""
}