-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "asthmadiary",
"version": "0.0.1",
"author": "Nils Griebner <[email protected]",
"description": "Asthma diary app for Nextcloud",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"dev": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "https://github.com/NilsGriebner/asthmadiary"
},
"keywords": [
"Asthma",
"Nextcloud"
],
"license": "agpl",
"dependencies": {
"axios": "^0.18.1",
"chart.js": "^2.9.3",
"file-saver": "^2.0.2",
"json2csv": "^4.5.4",
"jspdf": "^1.5.3",
"moment": "^2.24.0",
"nextcloud-server": "^0.15.10",
"nextcloud-vue": "^0.11.5",
"vee-validate": "^2.2.15",
"vue": "^2.6.11",
"vue-chartjs": "^3.5.0",
"vue-good-table": "^2.18.1",
"vue-router": "^3.1.3",
"vuex": "^3.1.2"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"babel-loader": "^8.0.6",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^2.1.1",
"moment-locales-webpack-plugin": "^1.1.2",
"vue-loader": "^15.8.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.4",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
}
}