-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.51 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.51 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
{
"name": "larpingapp",
"version": "1.0.0",
"license": "EUPL-1.2",
"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",
"lint": "eslint src",
"lint-fix": "npm run lint -- --fix",
"test": "jest --silent",
"test-coverage": "jest --silent --coverage",
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"sideEffects": true,
"dependencies": {
"@conduction/nextcloud-vue": "^0.1.0-beta.1",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/dialogs": "^3.2.0",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^2.0.1",
"@nextcloud/router": "^2.0.1",
"@nextcloud/vue": "^8.12.0",
"pinia": "^2.1.7",
"vue": "^2.7.14",
"vue-material-design-icons": "^5.3.0",
"vue-router": "^3.6.5"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/stylelint-config": "^2.4.0",
"@nextcloud/webpack-vue-config": "^6.0.1",
"css-loader": "~7.1.1",
"eslint": "^8.57.0",
"style-loader": "~4.0.0",
"vue-loader": "^15.11.1 <16.0.0",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.94.0",
"webpack-cli": "^6.0.1"
}
}