-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.81 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
{
"name": "yapdnsui",
"description": "Yet Another PowerDNS web interface",
"author": "Julian Bäume <[email protected]>",
"contributors": [
"Francois Lacroix <[email protected]>"
],
"homepage": "http://johnyb.github.io/yapdnsui/",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/johnyb/yapdnsui.git"
},
"bugs": {
"url": "https://github.com/johnyb/yapdnsui/issues"
},
"version": "0.0.8",
"license": "GPL-3.0+",
"private": true,
"scripts": {
"start": "[ -d dist ] || yarn build && cross-env NODE_ENV=production node ./bin/www",
"dev": "cross-env NODE_ENV=development nodemon -w middleware/ build/dev-server.js",
"build": "node build/build.js",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"e2e": "node test/e2e/runner.js",
"test": "yarn unit && yarn e2e",
"lint": "eslint --ext .js,.vue middleware ui build conf bin/www e2e"
},
"main": "bin/www",
"engines": {
"node": ">= 6",
"npm": "> 3.0.0"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"express": "^4.16.2",
"jquery": "^3.3.1",
"morgan": "^1.9.0",
"popper.js": "^1.14.3",
"request": "^2.83.0",
"serve-favicon": "^2.5.0",
"sqlite3": "^4.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-system-import-transformer": "^3.1.0",
"babel-preset-es2017": "^6.24.1",
"bootstrap": "^4.0.0",
"bootstrap-vue": "^2.0.0-rc.6",
"chai": "^4.1.2",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.4.1",
"cross-env": "^5.1.3",
"css-loader": "^0.28.9",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-codeceptjs": "^0.4.0",
"eslint-plugin-html": "^4.0.2",
"eventsource-polyfill": "^0.9.6",
"exports-loader": "^0.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^2.30.1",
"imports-loader": "^0.8.0",
"mocha": "^5.0.5",
"node-sass": "^4.8.3",
"nodemon": "^1.17.3",
"opn": "^5.2.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^2.0.0",
"resolve-url-loader": "^2.2.1",
"sass-loader": "^6.0.6",
"shelljs": "^0.8.1",
"style-loader": "^0.20",
"uglify-js": "^3.3.20",
"uglifyjs-webpack-plugin": "^1.1.8",
"url-loader": "^1.0.1",
"vue": "^2.5.13",
"vue-awesome": "^3.0.0",
"vue-loader": "^14.2.2",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.13",
"vuex": "^3.0.1",
"webpack": "^3.11.0",
"webpack-dev-middleware": "^2.0.5",
"webpack-hot-middleware": "^2.21.0",
"webpack-merge": "^4.1.1"
}
}