-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
127 lines (127 loc) · 4.17 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "workspace",
"version": "1.0.0",
"description": "Place this app in **nextcloud/apps/**",
"main": "main.js",
"private": true,
"scripts": {
"build": "webpack --node-env production --progress",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
"serve": "webpack --node-env development serve --progress",
"test": "jest",
"lint": "eslint --ext .js,.vue src",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.vue",
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.vue --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arawa/workspace.git"
},
"keywords": [],
"author": "Arawa <https://www.arawa.fr/>",
"contributors": [
{
"name": "Baptiste Fotia",
"email": "[email protected]"
},
{
"name": "Cyrille Bollu",
"email": "[email protected]"
}
],
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/arawa/workspace/issues"
},
"homepage": "https://github.com/arawa/workspace#readme",
"engines": {
"npm": "^9.0.0",
"node": "^20.0.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"Comments": {
"devDependencies": [
"The @nextcloud/eslint-config's version 7.0.2 triggers a problem when we run `npm install`.",
"We must define the `--force` flag to install these devDependencies.",
"But, when we run `npm test`, we have an error on the conflicts on the eslint package as peerDependency.",
"I created an issue on this : https://github.com/nextcloud/eslint-config/issues/294.",
"One solutions is downgraded theses packages :",
"- @nextcloud/[email protected]",
"- @nextcloud/[email protected]",
"Note: Look at this issue for webpack-vue-config package: https://github.com/nextcloud/nextcloud-vue/issues/2478",
"",
"Add this line '/node_modules/(?!(splitpanes)).+\\.js$'",
"To ignore the error related to splitpanes.css"
]
},
"devDependencies": {
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/eslint-config": "^8.2.1",
"@nextcloud/stylelint-config": "^2.3.0",
"@nextcloud/webpack-vue-config": "^5.4.0",
"@vue/compiler-dom": "^3.4.21",
"@vue/test-utils": "^1.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.5.0",
"core-js": "^3.36.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-mock-axios": "^4.7.3",
"jest-serializer-vue": "^3.1.0",
"jsdom": "^24.0.0",
"jsdom-global": "^3.0.2",
"prettier": "^2.7.1",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.7.13",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@nextcloud/axios": "^2.3.0",
"@nextcloud/dialogs": "^4.0.1",
"@nextcloud/l10n": "^2.1.0",
"@nextcloud/router": "^2.1.1",
"@nextcloud/vue": "^7.12.1",
"ramda": "^0.29.1",
"vue": "^2.7.13",
"vue-material-design-icons": "^5.2.0",
"vue-router": "^3.5.3",
"vuex": "^3.6.2"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"\\.(css|less)$": "identity-obj-proxy",
"^uuid$": "<rootDir>/node_modules/uuid/dist/index.js"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"transformIgnorePatterns": [
"/node_modules/(?!(bail|comma-separated-tokens|decode-named-character-reference|escape-string-regexp|hast-.*|is-*|mdast-.*|mdast-util-find-and-replace|micromark|property-information|rehype-.*|remark-.*|space-separated-tokens|splitpanes|trim-lines|trough|unified|unist-*|vfile|web-namespaces)).+\\.js$"
],
"setupFilesAfterEnv": [
"./src/tests/jest.setup.js"
],
"testEnvironment": "jsdom",
"transform": {
".*\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules/splitpanes"
]
}
}