-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.17 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.17 KB
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
{
"name": "appointments",
"version": "2.0.0",
"license": "agpl",
"private": true,
"scripts": {
"dev": "webpack --config webpack.dev.js",
"watch": "webpack --progress --watch --config webpack.dev.js",
"build": "webpack --progress --config webpack.prod.js",
"datepicker-css": "sass --style=compressed --no-source-map scss/datepicker/index.scss css/datepicker.css",
"convert-icons": "node nc25icons.js",
"profile": "webpack --config webpack.prod.js --profile --json > stats.json"
},
"dependencies": {
"@nextcloud/axios": "~2.5.2",
"@nextcloud/dialogs": "~6.4.2",
"@nextcloud/l10n": "~3.4.1",
"@nextcloud/logger": "~3.0.3",
"@nextcloud/router": "~3.1.0",
"@nextcloud/vue": "~8.37.0",
"linkifyjs": "~4.3.2",
"pinia": "~2.3.1",
"vue": "~2.7.16",
"vue-material-design-icons": "~5.3.1",
"vue-slider-component": "3.2.24",
"vue2-datepicker": "3.11.1"
},
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@babel/core": "~7.29.0",
"@babel/eslint-parser": "~7.26.10",
"@babel/plugin-proposal-class-properties": "~7.18.6",
"@babel/plugin-proposal-object-rest-spread": "~7.20.7",
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
"@babel/plugin-transform-modules-commonjs": "~7.26.3",
"@babel/plugin-transform-shorthand-properties": "~7.25.9",
"@nextcloud/babel-config": "~1.3.0",
"@nextcloud/browserslist-config": "~3.1.2",
"@vue/compiler-sfc": "~3.5.13",
"@vue/test-utils": "~1.3.6",
"assert": "~2.1.0",
"babel-loader": "~8.4.1",
"buffer": "~6.0.3",
"copy-webpack-plugin": "~12.0.2",
"css-loader": "~5.2.7",
"eslint": "~8.57.1",
"file-loader": "~6.2.0",
"process": "0.11.10",
"regenerator-runtime": "~0.13.11",
"sass": "~1.85.1",
"sass-loader": "~14.2.1",
"string_decoder": "^1.3.0",
"terser-webpack-plugin": "~5.3.14",
"util": "~0.12.5",
"uuid": "~11.1.0",
"vue-loader": "~15.11.1",
"vue-style-loader": "~4.1.3",
"vue-template-compiler": "~2.7.16",
"webpack": "~5.106.0",
"webpack-cli": "~5.1.4",
"webpack-merge": "~5.10.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}