This repository has been archived by the owner on Mar 23, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.52 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
{
"name": "navfit",
"version": "0.5.10",
"private": true,
"description": "Navy Evaluation/Fitrep Writer Modernized.",
"author": "Lance Gundersen",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://forms.gle/esBBRR2foqwBc2m48"
},
"keywords": [
"navy",
"navfit",
"eval",
"fitrep"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test": "vue-cli-service test:unit && codecov",
"test:watch": "vue-cli-service test:unit --watch",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"lint:prod": "NODE_ENV=production vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"main": "background.js",
"dependencies": {
"codecov": "^3.8.1",
"core-js": "^3.8.1",
"electron": "^11.0.3",
"electron-devtools-installer": "^3.1.1",
"electron-download-manager": "^2.1.2",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"lowdb": "^1.0.0",
"lowdb-adapter": "^0.1.3",
"material-design-icons-iconfont": "^6.1.0",
"pdf-lib": "^1.13.0",
"shortid": "^2.2.16",
"vee-validate": "^3.4.5",
"vue": "^2.6.12",
"vue-cli-plugin-electron-builder": "^2.0.0-rc.4",
"vue-router": "^3.4.9",
"vue-youtube-embed": "^2.2.2",
"vuetify": "^2.3.19",
"vuex": "^3.6.0"
},
"devDependencies": {
"@mdi/font": "^5.8.55",
"@vue/cli-plugin-babel": "^4.5.6",
"@vue/cli-plugin-e2e-cypress": "^4.5.6",
"@vue/cli-plugin-eslint": "^5.0.0-alpha.0",
"@vue/cli-plugin-router": "^4.5.6",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-plugin-vuex": "^4.5.6",
"@vue/cli-service": "^4.5.9",
"@vue/eslint-config-airbnb": "^5.1.0",
"@vue/test-utils": "1.1.0",
"babel-eslint": "^10.0.3",
"eslint": "^7.15.0",
"eslint-plugin-vue": "^7.3.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"typescript": "^4.1.2",
"vue-cli-plugin-vuetify": "^2.0.7",
"vue-template-compiler": "^2.6.12",
"vuetify-loader": "^1.6.0"
},
"resolutions": {
"vue-cli-plugin-electron-builder/electron-builder": "^22.2.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:prod"
}
}
}