-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.64 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
{
"name": "Wikistories",
"private": true,
"scripts": {
"test": "npm run lint:js && npm run lint:css && jest",
"test:watch": "jest --watch",
"test:jest": "jest",
"coverage": "npm run test:jest",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:css": "stylelint **/*.{vue,less}",
"lint:css:fix": "stylelint **/*.{vue,less} --fix",
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix",
"selenium-daily": "npm run @selenium-test",
"@selenium-test": "wdio tests/selenium/wdio.conf.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "7.17.10",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack4": "^6.5.13",
"@storybook/manager-webpack4": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@storybook/vue3": "^6.5.13",
"@vue/compiler-sfc": "3.5.13",
"@vue/test-utils": "2.4.6",
"@vue/vue3-jest": "29.2.6",
"@wdio/cli": "7.20.1",
"@wdio/junit-reporter": "7.20.0",
"@wdio/local-runner": "7.20.1",
"@wdio/mocha-framework": "7.20.0",
"@wdio/spec-reporter": "7.20.0",
"babel-loader": "^8.3.0",
"eslint-config-wikimedia": "0.28.2",
"eslint-plugin-jest": "26.1.5",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jquery": "3.7.1",
"postcss-html": "^1.4.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-wikimedia": "0.18.0",
"vue": "3.5.13",
"vue-loader": "^16.8.3",
"vuex": "4.0.2",
"wdio-mediawiki": "2.6.0"
}
}