This repository has been archived by the owner on May 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.53 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
{
"name": "earthdawn",
"version": "1.0.0-alpha.1",
"private": true,
"author": {
"name": "thislooksfun",
"email": "[email protected]",
"url": "https://github.com/thislooksfun"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test": "npm run test:unit --silent -- --verbose # the 'silent' suppresses npm ELIFECYCLE",
"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",
"test:unit": "vue-cli-service test:unit",
"test:unit:cover": "vue-cli-service test:unit --coverage",
"prettier:check": "prettier --check '**/*'",
"prettier:fix": "prettier --write '**/*'",
"purge": "rm -rf node_modules ; rm -rf dist ; rm -rf dist_electron ; rm -rf coverage",
"snyk:test": "snyk test",
"snyk:monitor": "snyk monitor",
"failure": "exit 1",
"dist": "electron-builder -wml"
},
"main": "background.js",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-regular-svg-icons": "^5.12.1",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/vue-fontawesome": "^0.1.9",
"bootstrap": "^4.4.1",
"bootstrap-vue": "^2.4.0",
"core-js": "^3.6.4",
"electron-config": "^2.0.0",
"electron-store": "^5.1.0",
"electron-window-state": "^5.0.3",
"js-yaml-loader": "^1.2.2",
"lodash": "^4.17.21",
"vue": "^2.6.11",
"vue-router": "^3.1.5",
"vuex": "^3.1.2",
"vuex-electron": "^1.0.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@vue/cli-plugin-babel": "^4.1.2",
"@vue/cli-plugin-eslint": "^4.1.2",
"@vue/cli-plugin-unit-jest": "^4.1.2",
"@vue/cli-service": "^4.1.2",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"babel-plugin-require-context-hook": "^1.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electron": "^7.1.11",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.1.2",
"husky": "^4.2.1",
"prettier": "1.19.1",
"sass": "^1.25.0",
"sass-loader": "^8.0.2",
"snyk": "^1.290.1",
"vue-cli-plugin-electron-builder": "^1.4.4",
"vue-template-compiler": "^2.6.11"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}