-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.6 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
{
"name": "rolls",
"version": "1.0.0",
"license": "AGPL-3.0-or-later",
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.js --progress",
"dev": "NODE_ENV=development webpack --config webpack.config.js --progress",
"watch": "NODE_ENV=development webpack --config webpack.config.js --progress --watch",
"serve": "webpack serve --node-env development --allowed-hosts all",
"lint": "eslint src",
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@mdi/js": "^7.4.47",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/moment": "^1.3.1",
"@nextcloud/vue": "^8.12.0",
"@skjnldsv/vue-plyr": "^7.5.0",
"@vue/compiler-dom": "^3.4.27",
"dayjs": "^1.11.11",
"dexie": "^4.0.7",
"easymde": "^2.18.0",
"fix-webm-duration": "^1.0.5",
"html-webpack-plugin": "^5.6.0",
"markdown-it": "^14.1.0",
"markdown-it-bidi": "^0.1.0",
"markdown-it-task-checkbox": "^1.0.6",
"vue": "^2.7.16",
"vue-material-design-icons": "^5.3.0",
"vue-router": "^3.6.5"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.3.0",
"@nextcloud/stylelint-config": "^2.4.0",
"@nextcloud/webpack-vue-config": "^6.0.1",
"autoprefixer": "^10.4.19",
"eslint-webpack-plugin": "^4.1.0",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"stylelint-webpack-plugin": "^5.0.0",
"tailwindcss": "^3.4.4"
}
}