-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.67 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
{
"name": "time-tracker",
"version": "1.0.0",
"description": "Time tracker application based on Vue.js and Electron",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"dev": "webpack --watch",
"build": "electron-packager . --all",
"build-win": "electron-packager . time-tracker --overwrite --asar=true --platform=win32 --arch=ia32 --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"Time tracker\"",
"build-mac": "electron-packager . time-tracker --platform=darwin --arch=x64"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Just-Do-It/time-tracker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Just-Do-It/time-tracker/issues"
},
"homepage": "https://github.com/Just-Do-It/time-tracker#readme",
"dependencies": {
"firebase": "~4.5.1",
"vue": "~2.4.4",
"vue-router": "~3.0.0",
"vuetify": "~0.16.6",
"vuex": "~3.0.0",
"webpack": "~3.6.0"
},
"devDependencies": {
"babel-core": "~6.26.0",
"babel-loader": "~7.1.2",
"babel-preset-es2015": "~6.24.1",
"css-loader": "~0.28.7",
"electron": "~1.7.8",
"electron-reload": "~1.2.2",
"electron-packager": "~10.1.2",
"eslint": "~4.9.0",
"eslint-config-standard": "~10.2.1",
"eslint-plugin-import": "~2.7.0",
"eslint-plugin-node": "~5.2.0",
"eslint-plugin-promise": "~3.6.0",
"eslint-plugin-standard": "~3.0.1",
"vue-loader": "~13.0.5",
"vue-template-compiler": "~2.4.4",
"webpack-dev-server": "~2.9.1"
},
"eslintConfig": {
"extends": "standard"
}
}