-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.17 KB
/
package.json
File metadata and controls
63 lines (63 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
{
"name": "nmcsettings",
"version": "0.1.0",
"description": "MagentaCLOUD settings app for Nextcloud",
"author": "T-Systems International",
"dependencies": {
"@nextcloud/auth": "^2.2.1",
"@nextcloud/axios": "^2.3.0",
"@nextcloud/dialogs": "^5.0.3",
"@nextcloud/event-bus": "^3.1.0",
"@nextcloud/files": "^3.0.0",
"@nextcloud/initial-state": "^2.0.0",
"@nextcloud/l10n": "^2.1.0",
"@nextcloud/logger": "^2.7.0",
"@nextcloud/password-confirmation": "^5.0.1",
"@nextcloud/router": "^2.1.2",
"@nextcloud/typings": "^1.7.0",
"@nextcloud/vue": "^8.4.0",
"debounce": "^1.2.1",
"vue": "^2.7.15",
"vue-material-design-icons": "^5.0.0"
},
"devDependencies": {
"@chenfengyuan/vue-qrcode": "^1.0.2",
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^3.0.0",
"@nextcloud/eslint-config": "^v8.3.0",
"@nextcloud/stylelint-config": "^2.3.1",
"@nextcloud/webpack-vue-config": "^6.0.0",
"@types/jest": "^29.5.5",
"@vue/tsconfig": "^0.4.0",
"css-loader": "^6.8.1",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"mock-xmlhttprequest": "^8.2.0",
"sass": "^1.69.7",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.1",
"throttle-debounce": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.1.6",
"v-tooltip": "^2.1.3",
"vue-loader": "^15.10.2",
"vue-template-compiler": "^2.7.15",
"webpack": "^5.79.0",
"webpack-cli": "^5.1.4"
},
"//": "seems to be needed to make it work atm",
"overrides": {
"stylelint": "^15.10.3"
},
"scripts": {
"build": "webpack --node-env production --progress",
"build:dev": "webpack --node-env development --progress",
"build:watch": "webpack --node-env development --progress --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest --verbose",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
}
}