forked from nextcloud/richdocuments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.07 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
{
"name": "richdocuments",
"description": "Collabora online integration",
"version": "1.0.0",
"authors": [
{
"name": "Julius Härtl",
"email": "[email protected]",
"role": "Developer"
}
],
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"dev": "NODE_ENV=development webpack --config webpack.dev.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint css/*",
"stylelint:fix": "stylelint css/* --fix",
"test": "NODE_ENV=test jest --passWithNoTests",
"test:coverage": "NODE_ENV=test jest --coverage"
},
"dependencies": {
"eslint-plugin-nextcloud": "^0.3.0",
"nextcloud-auth": "0.0.3",
"nextcloud-axios": "^0.2.0",
"nextcloud-l10n": "0.1.1",
"nextcloud-router": "0.0.9",
"nextcloud-server": "^0.15.10",
"nextcloud-vue": "^0.12.7",
"vue": "^2.6.10"
},
"browserslist": [
"extends browserslist-config-nextcloud"
],
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@vue/test-utils": "^1.0.0-beta.29",
"acorn": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"browserslist-config-nextcloud": "0.1.0",
"css-loader": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.0.1",
"file-loader": "^4.0.0",
"jest": "^24.8.0",
"jest-environment-jsdom-fourteen": "^0.1.0",
"jest-serializer-vue": "^2.0.2",
"node-sass": "^4.13.0",
"prettier-eslint": "^9.0.0",
"raw-loader": "^3.0.0",
"sass-loader": "^8.0.0",
"stylelint": "^11.1.1",
"stylelint-config-recommended-scss": "^4.0.0",
"stylelint-scss": "^3.12.1",
"stylelint-webpack-plugin": "^1.0.4",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"url-loader": "^2.2.0",
"vue-jest": "^3.0.5",
"vue-loader": "^15.7.2",
"vue-style-loader": "^4.1.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.1"
},
"jest": {
"verbose": true,
"testEnvironment": "jest-environment-jsdom-fourteen",
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"testPathIgnorePatterns": [
"<rootDir>/src/tests/fixtures/",
"<rootDir>/build"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"globalSetup": "<rootDir>/src/tests/setup.js"
}
}