This repository has been archived by the owner on Jun 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.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
{
"name": "wiwu-web",
"version": "1.0.0",
"description": "Winzerhof Wurst Website",
"main": "main.js",
"scripts": {
"dev:client": "webpack --config src/webpack.client.config.js --watch",
"dev:server": "webpack --config src/webpack.server.config.js --watch",
"devserver": "nodemon src/server.js",
"build": "webpack --config src/webpack.client.config.js && webpack --config src/webpack.server.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winzerhof-wurst/web.git"
},
"keywords": [
"wiwu",
"winzerhof-wurst",
"wine",
"shop",
"booking"
],
"author": "Christoph Wurst",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/winzerhof-wurst/web/issues"
},
"homepage": "https://github.com/winzerhof-wurst/web#readme",
"browserslist": "> 0.25%, not dead",
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@sentry/browser": "^5.16.1",
"axios": "^0.27.2",
"body-parser": "^1.19.0",
"bootstrap-vue": "^2.16.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"nodemon": "^2.0.14",
"vue": "^2.6.14",
"vue-matomo": "^3.12.0",
"vue-router": "^3.5.2",
"vue-server-renderer": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"vuex": "^3.6.2",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.14.8",
"babel-loader": "^8.2.2",
"css-loader": "^3.4.2",
"file-loader": "^5.1.0",
"url-loader": "^3.0.0",
"vue-loader": "^15.9.7",
"vue-style-loader": "^4.1.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}