This repository has been archived by the owner on Feb 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "password-manager",
"description": "Simple password manager for nerd",
"author": "Sang Dang <[email protected]>",
"version": "3.0.0-beta.1",
"license": "MIT",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"animate.css": "^3.7.0",
"axios": "^0.18.0",
"electron-json-storage": "^4.1.4",
"element-ui": "^2.4.5",
"lodash": "^4.17.19",
"moment": "^2.25.3",
"moment-duration-format": "^2.2.2",
"raven-js": "^3.27.0",
"register-service-worker": "^1.0.0",
"vee-validate": "^2.1.0-beta.11",
"vue": "^2.6.11",
"vue-axios": "^2.1.4",
"vue-clipboard2": "^0.2.1",
"vue-i18n": "^8.2.0",
"vue-progressbar": "^0.7.5",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.5",
"@vue/cli-plugin-eslint": "^3.0.5",
"@vue/cli-plugin-pwa": "^3.0.5",
"@vue/cli-plugin-unit-mocha": "^3.0.5",
"@vue/cli-service": "^4.3.1",
"@vue/eslint-config-airbnb": "^3.0.5",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-plugin-component": "^1.1.1",
"chai": "^4.1.2",
"electron": "^8.2.5",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"vue-cli-plugin-electron-builder": "^1.4.6",
"vue-cli-plugin-element": "^1.0.0",
"vue-template-compiler": "^2.6.11"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"main": "background.js"
}