forked from wikimedia/mediawiki-skins-Vector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.04 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
{
"private": true,
"scripts": {
"start": "dev-scripts/setup-storybook.sh && start-storybook --quiet -p 6006 -s docs/ui",
"build": "npm -s test && npm -s run doc",
"test": "npm -s run lint && tsc",
"test:size": "node ./tests/resource-loader-bundlesize.js",
"lint": "npm -s run lint:js && npm -s run lint:styles && npm -s run lint:i18n",
"lint:fix:js": "npm -s run lint:js -- --fix",
"lint:fix:styles": "npm -s run lint:styles -- --fix",
"lint:js": "eslint --cache --max-warnings 0 .",
"lint:styles": "stylelint \"**/*.{less,css}\"",
"lint:i18n": "banana-checker --requireLowerCase=0 i18n/",
"selenium-test": "npm -s run test:size",
"doc": "jsdoc -c jsdoc.json && npm run build-storybook",
"build-storybook": "dev-scripts/setup-storybook.sh && build-storybook --quiet --loglevel warn -o docs/ui",
"svgmin": "svgo --config=.svgo.yml -q -r -f resources/"
},
"devDependencies": {
"@babel/core": "7.7.7",
"@babel/preset-env": "7.8.7",
"@emotion/core": "^10.0.27",
"@storybook/html": "5.2.8",
"@types/jquery": "3.3.33",
"@types/mustache": "4.0.1",
"@types/node": "13.13.12",
"@types/node-fetch": "2.5.7",
"babel-loader": "8.0.6",
"bundlesize": "0.18.0",
"eslint": "7.23.0",
"eslint-config-wikimedia": "0.20.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-jsdoc": "^32.3.0",
"eslint-plugin-json-es": "^1.5.3",
"eslint-plugin-mediawiki": "^0.2.7",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-no-jquery": "^2.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-qunit": "^6.0.0",
"eslint-plugin-vue": "^7.8.0",
"eslint-plugin-wdio": "^7.0.0",
"grunt-banana-checker": "0.9.0",
"jsdoc": "3.6.3",
"jsdoc-wmf-theme": "0.0.3",
"less": "3.8.1",
"less-loader": "4.1.0",
"mustache": "3.0.1",
"node-fetch": "2.6.0",
"pre-commit": "1.2.2",
"react" : "^16.3.0",
"react-dom": "16.13.0",
"stylelint": "13.8.0",
"stylelint-config-wikimedia": "0.10.3",
"svgo": "1.3.2",
"typescript": "3.8.3",
"webpack": "4.43.0"
},
"resolutions": {
"@babel/preset-env": "7.8.7",
"react-dom": "16.13.0"
}
}