-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 3.43 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
{
"name": "uk-train-boards",
"productName": "UK Train Boards",
"version": "4.0.6",
"description": "Recreate the UK's National Rail Information Boards wherever you are!",
"keywords": [
"electron",
"national rail",
"railways",
"trains",
"departure boards",
"dot matrix",
"national rail darwin",
"uk railway stations"
],
"homepage": "https://trainboards.co.uk",
"repository": {
"type": "git",
"url": "https://www.github.com/danielhartuk/uk-train-boards.git"
},
"private": false,
"license": "MIT",
"author": {
"email": "me@danielhart.co.uk",
"name": "Daniel Hart",
"url": "https://www.danielhart.co.uk"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"eslint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/renderer/locales/**/*.json'",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"stylelint": "stylelint './src/renderer/**/*.?(s)css'"
},
"main": "background.js",
"dependencies": {
"@babel/plugin-proposal-private-methods": "^7.10.4",
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/vue-fontawesome": "^2.0.2",
"core-js": "^3.6.4",
"electron": "^11.1.1",
"electron-icon-builder": "^2.0.1",
"electron-window-state": "^5.0.3",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"national-rail-darwin-promises": "^2.1.2",
"normalize.css": "^8.0.1",
"sqlite": "^4.0.11",
"sqlite3": "^5.0.0",
"v-tooltip": "^2.0.3",
"vue": "^2.6.11",
"vue-cli-plugin-electron-builder": "^2.0.0-rc.4",
"vue-i18n": "^8.18.2",
"vue-resize": "^0.5.0",
"vue-router": "^3.3.4",
"vuejs-dialog": "^1.4.1",
"vuex": "^3.5.1"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@intlify/vue-i18n-loader": "^1.0.0",
"@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-eslint": "^4.4.6",
"@vue/cli-plugin-router": "^4.4.6",
"@vue/cli-plugin-vuex": "^4.4.6",
"@vue/cli-service": "^4.4.6",
"@vue/eslint-config-airbnb": "^5.1.0",
"electron-devtools-installer": "^3.1.1",
"eslint": "^7.16.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-vue": "^7.4.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"sass": "^1.26.9",
"sass-loader": "^10.1.0",
"stylelint": "^13.6.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-config-skyscanner": "^3.0.3",
"stylelint-order": "^4.1.0",
"stylelint-webpack-plugin": "^2.1.0",
"vue-cli-plugin-i18n": "^1.0.1",
"vue-template-compiler": "^2.6.11"
},
"optionalDependencies": {
"electron-icon-builder": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.?(mjs|js|vue)": "eslint --cache --fix",
"*.?(s)css": "stylelint --fix"
}
}