-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.8 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
{
"name": "roomvox",
"version": "1.4.0",
"description": "Nextcloud Room Booking App",
"scripts": {
"prebuild": "node scripts/check-l10n-sync.js",
"build": "webpack --mode production",
"dev": "webpack --mode development",
"watch": "webpack --mode development --watch",
"l10n:extract": "node scripts/extract-en-json.js",
"l10n:lint": "node scripts/lint-l10n-strings.js",
"l10n:check": "node scripts/check-l10n-sync.js",
"l10n:js": "node scripts/generate-l10n-js.js",
"pot": "npm run l10n:extract && node scripts/generate-pot.js",
"l10n:push": "npm run l10n:extract && node scripts/lint-l10n-strings.js && node scripts/generate-pot.js"
},
"dependencies": {
"@fullcalendar/core": "^6.1.20",
"@fullcalendar/daygrid": "^6.1.20",
"@fullcalendar/interaction": "^6.1.20",
"@fullcalendar/list": "^6.1.20",
"@fullcalendar/resource-timeline": "^6.1.20",
"@fullcalendar/timegrid": "^6.1.20",
"@fullcalendar/vue3": "^6.1.20",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/dialogs": "^7.1.0",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.4.0",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^9.1.0",
"vue": "^3.5.22",
"vue-material-design-icons": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"sass": "^1.69.0",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"vue-loader": "^17.4.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}