-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "shifts",
"description": "Shifts Organisation",
"version": "1.9.10",
"author": "CSOC <[email protected]>",
"license": "agpl",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.js",
"dev": "NODE_ENV=development webpack --progress --watch --config webpack.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
"lint": "eslint --ext .js,.vue --ignore-path .gitignoresrc",
"lint:fix": "eslint --ext .js,.vue --ignore-path .gitignore src --fix",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue",
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"@mdi/js": "^7.4.47",
"@nextcloud/auth": "^2.4.0",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/calendar-js": "^8.0.0",
"@nextcloud/cdav-library": "^1.5.1",
"@nextcloud/dialogs": "^4.2.7",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^7.12.8",
"autosize": "^6.0.1",
"core-js": "^3.38.0",
"dayjs": "^1.11.12",
"material-design-icons-iconfont": "^6.7.0",
"moment": "^2.30.1",
"npm-ls": "^1.0.0",
"v-tooltip": "^2.1.3",
"vue": "^2.7.16",
"vue-click-outside": "^1.1.0",
"vue-clipboard2": "^0.3.3",
"vue-material-design-icons": "^5.3.0",
"vue-router": "^3.6.5",
"vue-shortkey": "^3.1.7",
"vue2-timepicker": "^1.1.6",
"vuejs-weekpicker": "^0.3.2",
"vuex": "^3.6.2",
"vuex-router-sync": "^5.0.0",
"webpack-merge": "^6.0.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.25.3",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/eslint-plugin": "^2.2.1",
"@nextcloud/webpack-vue-config": "^6.0.1",
"babel-loader": "^9.1.3",
"deepmerge": "^4.3.1",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-webpack-plugin": "^4.2.0",
"file-loader": "^6.2.0",
"sass": "^1.77.8",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-scss": "^6.5.0",
"url-loader": "^4.1.1",
"vue-template-compiler": "^2.7.16",
"webpack-cli": "^5.1.4"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
}
}