-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.25 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.25 KB
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
{
"name": "nevis",
"productName": "Nevis",
"version": "5.3.0",
"description": "Fast and Easy Results for Orienteering",
"author": "brownben <9870007+brownben@users.noreply.github.com>",
"license": "MIT",
"repository": "git+https://github.com/brownben/nevis.git",
"bugs": "https://github.com/brownben/nevis/issues",
"homepage": "https://github.com/brownben/nevis#readme",
"main": "main.js",
"keywords": [
"timing",
"orienteering",
"results",
"sportident"
],
"scripts": {
"eslint:check": "vue-cli-service lint --no-fix",
"eslint:fix": "vue-cli-service lint",
"prettier:check": "prettier --check **",
"prettier:fix": "prettier --write ** ",
"lint": "npm run prettier:fix && npm run eslint:fix",
"check": "npm run prettier:check && npm run eslint:check",
"test": "vue-cli-service test:unit -i",
"electron-pack": "electron-builder --dir",
"electron-build": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"vue-build": "vue-cli-service build",
"build": "npm run vue-build && npm run electron-build",
"vue-run": "vue-cli-service serve",
"electron-run": "electron . ",
"start": "concurrently -k -n vue,electron \"npm:vue-run\" \"npm:electron-run\" -c green,blue"
},
"dependencies": {
"core-js": "^3.6.4",
"mysql": "^2.18.1",
"serialport": "^8.0.7",
"vue": "^2.6.11",
"vue-router": "^3.3.4",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.3.0",
"@vue/cli-plugin-eslint": "^4.5.7",
"@vue/cli-plugin-unit-jest": "^4.5.7",
"@vue/cli-service": "^4.5.7",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.2",
"concurrently": "^5.3.0",
"electron": "^10.1.3",
"electron-builder": "^22.4.1",
"eslint": "^6.8.0",
"eslint-config-alloy": "^3.5.0",
"eslint-plugin-vue": "^6.1.2",
"mockdate": "^3.0.2",
"prettier": "^2.1.2",
"tailwindcss": "^1.2.0",
"vue-eslint-parser": "^7.1.1",
"vue-template-compiler": "^2.6.11"
},
"build": {
"productName": "Nevis",
"copyright": "Copyright © Ben Brown 2020",
"directories": {
"output": "./build",
"buildResources": "./public"
}
}
}