-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 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
{
"name": "tijd",
"productName": "Tijd",
"version": "1.0.1",
"description": "Simple time tracking",
"main": "main/index.js",
"scripts": {
"start": "electron .",
"dev-productionlike": "NODE_ENV=prodlike electron .",
"dev": "NODE_ENV=dev electron .",
"debug": "NODE_ENV=dev electron --inspect-brk .",
"pack": "NODE_ENV=production electron-builder --dir",
"dist": "cd renderer/ && npm run build && cd .. && electron-builder -p always"
},
"repository": "https://github.com/timoweiss/tijd",
"author": {
"name": "Timo Weiß",
"email": "[email protected]",
"url": "timo-weiss.com"
},
"keywords": [
"Tijd",
"timetracking",
"zeit",
"time-tracker",
"reporting"
],
"license": "MIT",
"build": {
"appId": "com.timo-weiss.tijd",
"mac": {
"category": "your.app.category.type",
"extendInfo": {
"LSUIElement": 1
}
}
},
"dependencies": {
"electron-gh-releases": "^2.0.4",
"request": "^2.82.0",
"semver": "^5.5.0"
},
"devDependencies": {
"electron": "^1.8.4",
"electron-builder": "^19.56.2",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.7.0"
},
"eslintConfig": {
"extends": "airbnb"
}
}