This repository was archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
75 lines (75 loc) · 1.85 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
{
"name": "frontend",
"description": "open source password manager",
"author": "Guillaume Vincent <[email protected]>",
"scripts": {
"start": "NODE_ENV=production node server.js",
"dev": "webpack-dev-server --inline --hot --host 0.0.0.0",
"build": "rm -rf dist/ && cross-env NODE_ENV=production webpack --progress --hide-modules",
"test": "ava test --require babel-core/register && xo"
},
"dependencies": {
"axios": "^0.21.1",
"bootstrap": "^4.0.0-alpha.2",
"clipboard": "^1.5.12",
"es6-promise": "^3.1.2",
"express": "^4.14.0",
"font-awesome": "^4.6.3",
"hint.css": "^2.3.1",
"jquery": "^3.0.0",
"lesspass": "^3.2.0",
"moment": "^2.12.0",
"notie": "^3.2.0",
"tether": "^1.2.0",
"vue": "^1.0.25",
"vue-i18n": "^4.0.1",
"vue-router": "^0.7.13"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"babel-runtime": "^6.0.0",
"cross-env": "^1.0.6",
"css-loader": "^0.23.1",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"nock": "^8.0.0",
"node-sass": "^3.8.0",
"sass-loader": "^3.2.3",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"vue-hot-reload-api": "^1.3.3",
"vue-html-loader": "^1.0.0",
"vue-loader": "^8.2.1",
"vue-style-loader": "^1.0.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0",
"xo": "^0.16.0"
},
"xo": {
"esnext": true,
"space": true,
"envs": [
"browser"
],
"ignores": [
"webpack.config.js",
"server.js",
"test/_helpers.js"
]
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"transform-runtime"
],
"comments": false
}
}