forked from owncloud/web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 4.66 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
{
"name": "owncloud_phoenix",
"title": "ownCloud Phoenix",
"icon": "folder",
"version": "0.1.0",
"description": "A safe home for all your data",
"main": "core/core.bundle.js",
"scripts": {
"build:dev": "webpack -d --config webpack.dev.js",
"build": "webpack -p --config webpack.prod.js",
"dist": "run-s clean-all install-all build-all",
"clean-all": "rimraf apps/*/node_modules apps/*/dist dist/",
"ncu-all": "node build/run-for-all.js npm-check-updates -a",
"upgrade-all": "node build/run-for-all.js yarn upgrade",
"install-all": "node build/run-for-all.js yarn install",
"build-all": "node build/run-for-all.js yarn build",
"watch-all": "node build/run-for-all.js -p yarn watch",
"watch": "yarn run build:dev && webpack-dev-server --progress --colors --watch --config webpack.dev.js --public $SERVER_HOST",
"lint": "eslint src apps/*/src tests build --ext vue --ext js --color",
"lint-fix": "eslint src apps/*/src tests build --ext vue --ext js --color --fix",
"accessibility-tests": "node node_modules/axe-cli/axe-cli --exit --disable page-has-heading-one,meta-viewport",
"accessibility-tests-drone": "node node_modules/axe-cli/axe-cli --exit --disable page-has-heading-one,meta-viewport",
"install": "cd node_modules/cucumber; yarn install",
"acceptance-tests": "cucumber-js --retry 1 --require-module @babel/register --require-module @babel/polyfill --require tests/acceptance/setup-local.js --require tests/acceptance/stepDefinitions --format node_modules/cucumber-pretty -t 'not @skip'",
"acceptance-tests-drone": "cucumber-js --retry 1 --require-module @babel/register --require-module @babel/polyfill --require tests/acceptance/setup-drone.js --require tests/acceptance/stepDefinitions --format node_modules/cucumber-pretty tests/acceptance/features/$TEST_CONTEXT -t \"${TEST_TAGS}\""
},
"author": "Felix Heidecke",
"license": "AGPL-3.0",
"homepage": "https://github.com/owncloud/phoenix",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-classes": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"archiver": "^3.0.0",
"axe-cli": "^3.1.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"chromedriver": "^75.0.1",
"copy-webpack-plugin": "^5.0.3",
"core-js": "3.1.4",
"css-loader": "^3.1.0",
"cucumber": "cucumber/cucumber-js#issue-727-retry",
"cucumber-pretty": "^1.5.2",
"easygettext": "^2.7.0",
"eslint": "6.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-compat": "^3.2.0",
"eslint-plugin-import": "^2.18.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.3",
"execa": "^2.0.3",
"file-loader": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": ">=3.0.1",
"lint-staged": ">=9",
"mini-css-extract-plugin": "^0.8.0",
"nightwatch": "^1.1.13",
"nightwatch-api": "^2.3.0",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"oidc-client": "https://github.com/IdentityModel/oidc-client-js#35d7c79bf64ed5e89d8a41adf0e4a8a1c3d843c5",
"owncloud-design-system": "^1.0.0-850",
"owncloud-sdk": "1.0.0-265",
"parse-json": "^5.0.0",
"requirejs": "^2.3.6",
"rimraf": "^2.6.3",
"start-server-and-test": "^1.9.1",
"style-loader": "^0.23.1",
"url-search-params-polyfill": "^7.0.0",
"v-clipboard": "^2.2.2",
"vue": "^2.6.10",
"vue-drag-drop": "^1.1.4",
"vue-events": "^3.1.0",
"vue-gettext": "^2.1.5",
"vue-loader": "^15.7.1",
"vue-router": "^3.0.7",
"vue-scrollto": "^2.15.0",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.1",
"vuex-persist": "^2.0.1",
"vuex-router-sync": "^5.0.0",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.5",
"webpack-copy-plugin": "^0.0.4",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1",
"webpack-version-file-plugin": "^0.4.0",
"whatwg-fetch": "^3.0.0",
"wicked-good-xpath": "^1.3.0",
"xml-js": "^1.6.11"
},
"browserslist": [
"last 1 version",
"> 1%",
"IE 11"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{vue,js}": [
"eslint --fix",
"git add"
]
}
}