-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 3.07 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
{
"name": "sentinel-dvpn-desktop",
"version": "1.1.1",
"private": true,
"description": "Sentinel dVPN",
"license": "MIT",
"productName": "Sentinel dVPN",
"author": {
"name": "Sentinel Foundation",
"email": "[email protected]"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"lint:style": "stylelint './src/**/*.?(scss|vue)'",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"main": "background.js",
"dependencies": {
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@grpc/grpc-js": "^1.5.1",
"axios": "^0.21.1",
"bech32": "^1.1.3",
"bip39": "^3.0.4",
"core-js": "^3.6.5",
"country-code-lookup": "^0.0.19",
"date-fns": "^2.23.0",
"electron-log": "^4.4.4",
"electron-store": "^8.0.0",
"flagpack": "^1.0.5",
"google-protobuf": "^3.17.3",
"grpc-web": "^1.2.1",
"i18next": "^20.6.0",
"lodash.debounce": "^4.0.8",
"param-case": "^3.0.4",
"portastic": "^1.0.1",
"ps-node": "^0.1.6",
"qrious": "^4.0.2",
"sass": "^1.37.5",
"sass-loader": "^10",
"stylelint": "^13.13.1",
"stylelint-order": "^4.1.0",
"stylelint-webpack-plugin": "^3.0.1",
"tiny-emitter": "^2.1.0",
"uint64be": "^3.0.0",
"vue": "^3.2.30",
"vue-i18n": "^9.1.7",
"vue-router": "4",
"vue3-clipboard": "^1.0.0",
"vue3-popper": "^1.4.2",
"vuex": "^4.0.2",
"wireguard-wrapper": "^1.0.3"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^2.0.0-0",
"babel-eslint": "^10.1.0",
"electron": "^16.0.1",
"electron-devtools-installer": "^3.1.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^7.0.0",
"lint-staged": "^9.5.0",
"style-resources-loader": "^1.4.1",
"typescript": "~3.9.3",
"vue-cli-plugin-electron-builder": "~2.1.1",
"vue-cli-plugin-style-resources-loader": "~0.1.5",
"vue-jest": "^5.0.0-0"
},
"peerDependencies": {},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"_id": "[email protected]",
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://sentinel.co/",
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
},
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/solarlabsteam/sentinel-dvpn-desktop"
}
}