-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.27 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": "Serve",
"description": "Local development environments without the hassle.",
"homepage": "https://github.com/BjornDCode/serve",
"repository": "https://github.com/BjornDCode/serve",
"author": {
"name": "Bjørn Lindholm",
"email": "[email protected]"
},
"version": "0.4.2",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test": "vue-cli-service test:unit --recursive",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"publish": "npm run electron:build -- -p always",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"main": "background.js",
"dependencies": {
"@iarna/toml": "^2.2.5",
"chokidar": "^3.4.3",
"core-js": "^3.6.5",
"date-fns": "^2.16.1",
"docker-compose": "^0.23.5",
"dotenv": "^8.2.0",
"electron-log": "^4.2.4",
"electron-updater": "^4.3.5",
"fix-path": "^3.0.0",
"lodash": "^4.17.19",
"nucleus-nodejs": "^3.0.6",
"simple-git": "^2.19.0",
"tailwindcss": "^1.9.6",
"tinykeys": "^1.0.6",
"uuid": "^8.3.0",
"vue": "^2.6.11",
"vue-fragment": "^1.5.1",
"vue-router": "^3.2.0",
"vue-text-highlight": "^2.0.10",
"vue-zondicons": "^0.1.10",
"vuex": "^3.4.0",
"vuex-persist": "^2.2.0",
"yaml": "^1.10.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-plugin-router": "~4.4.0",
"@vue/cli-plugin-unit-mocha": "^4.5.6",
"@vue/cli-plugin-vuex": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"electron": "^9.1.2",
"electron-devtools-installer": "^3.1.1",
"electron-notarize": "^1.0.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"javascript-state-machine": "^3.1.0",
"lint-staged": "^9.5.0",
"vue-cli-plugin-electron-builder": "~2.0.0-rc.4",
"vue-cli-plugin-tailwind": "~1.4.1",
"vue-template-compiler": "^2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}