-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.09 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
{
"name": "nowpass-vue",
"version": "0.1.8",
"description": "Vue.js 2 Frontend of the NOWPASS password manager",
"author": "Yves Hoppe <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"build": "node build/build.js",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"test": "npm run unit"
},
"dependencies": {
"aes-js": "^3.1.1",
"axios": "^0.19.0",
"bootstrap": "^4.1.3",
"date-fns": "^1.29.0",
"js-sha256": "^0.9.0",
"lodash": "^4.17.10",
"node-sass": "^4.9.2",
"sass-loader": "^6.0.7",
"vue": "^2.5.16",
"vue-awesome": "^2.3.8",
"vue-context-menu": "^2.0.6",
"vue-i18n": "^7.8.1",
"vue-my-dropdown": "^2.1.0",
"vue-router": "^3.0.1"
},
"devDependencies": {
"@kazupon/vue-i18n-loader": "^0.2.1",
"autoprefixer": "^7.2.6",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.22.0",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^2.30.1",
"karma": "^2.0.5",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.5.0",
"karma-sinon-chai": "^1.3.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^2.0.13",
"mocha": "^4.1.0",
"node-notifier": "^5.4.3",
"optimize-css-assets-webpack-plugin": "^3.2.1",
"ora": "^1.4.0",
"phantomjs-prebuilt": "^2.1.16",
"portfinder": "^1.0.24",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.6",
"postcss-url": "^7.3.2",
"rimraf": "^2.7.1",
"semver": "^5.7.1",
"shelljs": "^0.7.6",
"sinon": "^4.5.0",
"sinon-chai": "^2.14.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^0.5.8",
"vue-loader": "^13.7.3",
"vue-style-loader": "^3.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^3.12.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-server": "^2.11.5",
"webpack-merge": "^4.2.2"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/nowpass/vue-frontend.git"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}