-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.54 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.54 KB
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
{
"name": "GrowthExperiments",
"private": true,
"scripts": {
"api-testing": "mocha --timeout 20000 --require tests/api-testing/fixtures.cjs --parallel --recursive tests/api-testing",
"doc": "cd documentation/frontend && npm ci && npm run docs:build",
"minify:svg": "svgo --config=.svgo.config.js --quiet --recursive --folder images/",
"selenium-test": "npm run cy:run",
"cy:open": "CYPRESS_CACHE_FOLDER=./cypress/.cache cypress open",
"cy:run": "CYPRESS_CACHE_FOLDER=./cypress/.cache cypress run",
"test": "npm-run-all test:*",
"test:types": "tsc --noEmit && tsc --noEmit -p cypress/tsconfig.json",
"test:eslint": "eslint --cache . --max-warnings=0",
"test:stylelint": "stylelint --cache \"**/*.{css,vue,less}\"",
"test:i18n": "node-jq '.MessagesDirs.GrowthExperiments[]' extension.json -r | xargs banana-checker --requireLowerCase=0",
"test:jest": "jest",
"test:doc": "cd documentation/frontend && npm ci && npm run test",
"jest-update": "jest -u",
"coverage": "npm run test:jest",
"rollup": "rollup -c",
"dev:structured-task": "cd modules/ext.growthExperiments.StructuredTask.PreEdit/dev && vite"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "0.1.0",
"@types/jquery": "^3.5.32",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "8.56.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "^29.2.6",
"@wikimedia/codex": "2.4.0",
"@wikimedia/codex-design-tokens": "2.4.0",
"@wikimedia/types-wikimedia": "^0.4.4",
"api-testing": "1.7.3",
"cypress": "^15.10.0",
"cypress-terminal-report": "^7.3.3",
"d3-array": "3.2.0",
"d3-interpolate": "3.0.1",
"d3-path": "3.0.1",
"d3-scale": "4.0.2",
"d3-selection": "3.0.0",
"d3-shape": "3.1.0",
"d3-time": "3.0.0",
"d3-time-format": "4.1.0",
"eslint": "^8.57.1",
"eslint-config-wikimedia": "0.32.3",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-cypress": "^3.6.0",
"grunt-banana-checker": "0.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fail-on-console": "^3.0.2",
"jquery": "3.7.1",
"less": "^4.2.0",
"moment": "^2.29.4",
"node-jq": "^6.3.1",
"npm-run-all2": "^8.0.4",
"postcss-html": "1.4.1",
"rollup": "3.30.0",
"stylelint": "^16.19.1",
"stylelint-config-recommended-vue": "1.4.0",
"stylelint-config-wikimedia": "0.18.0",
"svgo": "4.0.1",
"typescript": "^4.9.5",
"vite": "^7.1.6",
"vue": "3.5.13",
"vuex": "4.0.2"
},
"engines": {
"npm": ">=10",
"node": ">=20"
}
}