-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
83 lines (83 loc) · 2.87 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
{
"private": true,
"name": "ocis-hello",
"version": "0.0.0",
"description": "",
"homepage": "https://github.com/owncloud/ocis-hello#readme",
"license": "Apache-2.0",
"author": "ownCloud GmbH <devops@owncloud.com>",
"repository": "https://github.com/owncloud/ocis-hello.git",
"bugs": {
"url": "https://github.com/owncloud/ocis-hello/issues",
"email": "support@owncloud.com"
},
"scripts": {
"lint": "eslint ui/**/*.vue ui/**/*.js --color --global requirejs --global require",
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "echo 'Not implemented'",
"generate-api": "node node_modules/swagger-vue-generator/bin/generate-api.js --package-version v0 --source pkg/proto/v0/hello.swagger.json --moduleName hello --destination ui/client/hello/index.js",
"test:e2e": "cucumber-js --import cucumber.conf.cjs --import ui/tests/acceptance/stepDefinitions/**/*.cjs --format @cucumber/pretty-formatter"
},
"type": "module",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.21.5",
"@babel/register": "^7.21.0",
"@cucumber/cucumber": "^9.1.2",
"@cucumber/pretty-formatter": "^1.0.0",
"@erquhart/rollup-plugin-node-builtins": "^2.1.5",
"@playwright/test": "^1.34.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"archiver": "^5.3.1",
"axios": "^1.6.0",
"chromedriver": "^113.0.0",
"core-js": "3.30.2",
"cross-env": "^7.0.3",
"debounce": "^1.2.0",
"easygettext": "^2.7.0",
"eslint": "^8.41.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^9.14.0",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"join-path": "^1.1.1",
"ldapjs": "^3.0.2",
"node-fetch": "^3.3.1",
"qs": "^6.11.2",
"rimraf": "^5.0.1",
"rollup": "^3.23.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"swagger-vue-generator": "^1.0.6",
"url-search-params-polyfill": "^8.1.0",
"vue-template-compiler": "^2.7.14",
"xml-js": "^1.6.11"
},
"browserslist": [
"> 1%",
"not dead"
],
"dependencies": {
"eslint-plugin-n": "^16.0.0",
"install": "^0.13.0",
"owncloud-design-system": "^14.0.1"
},
"main": "index.js"
}