-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.81 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
{
"name": "fundraising-banners",
"version": "1.0.0",
"description": "WMDE fundraising banners",
"main": "index.js",
"private": true,
"scripts": {
"test": "npm run test:all",
"test:all": "vitest --run --config vitest.campaign.config.mjs",
"test:banners": "vitest --run --config vitest.campaign.config.mjs test/banners",
"test:components": "vitest --run --config vitest.campaign.config.mjs test/components",
"test:integration": "vitest --run --config vitest.campaign.config.mjs test/integration",
"test:unit": "vitest --run --config vitest.campaign.config.mjs test/unit",
"test:all-banners": "vitest --run test/banners",
"watch": "webpack --watch",
"build": "npm-run-all -s check-content-version clean build:banners",
"build:banners": "webpack --config webpack.production.js",
"build:thankyou": "npm run clean && webpack --config webpack.production.js --env campaign_info=campaign_info.thank_you.toml",
"build:channel": "node webpack/build_channel.js",
"build:campaign": "node webpack/build_channel.js",
"start": "npm run dev",
"start-strict": "npm run dev-strict",
"dev": "nodemon",
"dev-strict": "nodemon --config nodemon.strict.json",
"thankyou": "webpack serve --host 0.0.0.0 --env campaign_info=campaign_info.thank_you.toml",
"clean": "rimraf dist/*.js dist/*.wikitext dist/*.map",
"lint": "npm-run-all lint:*",
"lint:js": "eslint --ext .js,.vue,.ts,.cjs --cache --cache-location .eslintcache --ignore-path .gitignore .",
"lint:ts": "vue-tsc --noEmit",
"lint:css": "stylelint '**/*.{scss,vue}'",
"lint:test-imports": "node test/find_mismatched_imports.mjs",
"ci": "npm-run-all lint test check-content-version",
"check-content-version": "ts-node check-content-version.ts",
"coverage": "vitest run --coverage",
"update-content": "npm update fundraising-frontend-content"
},
"keywords": [],
"author": "fundaising-tech@wikimedia.de",
"license": "MIT",
"repository": "https://github.com/wmde/fundraising-banners",
"dependencies": {
"format-number": "^3.0.0",
"fundraising-frontend-content": "github:wmde/fundraising-frontend-content#production",
"keen-slider": "^6.8.6",
"vue": "^3.5.12"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.4",
"@stylistic/eslint-plugin-js": "^2.9.0",
"@stylistic/eslint-plugin-jsx": "^2.9.0",
"@stylistic/eslint-plugin-ts": "^2.9.0",
"@stylistic/stylelint-config": "^2.0.0",
"@types/jsdom": "^21.1.7",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.1.3",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"chalk": "^2.4.2",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-wikimedia": "^0.28.2",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vue": "^9.29.1",
"eslint-plugin-yml": "^1.14.0",
"fast-glob": "^3.3.2",
"handlebars": "^4.7.8",
"jsdom": "^25.0.1",
"nodemon": "^3.1.7",
"npm-check-updates": "^17.1.4",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"sass": "^1.80.3",
"sass-loader": "^16.0.2",
"string-replace-loader": "^3.1.0",
"style-loader": "^4.0.0",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-webpack-plugin": "^5.0.1",
"toml": "^3.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "^2.1.1",
"vue-loader": "^17.4.2",
"vue-tsc": "^2.1.6",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1",
"webpack-merge": "^6.0.1",
"webpack-sources": "^3.2.3"
},
"browserslist": [
"last 2 versions",
"> 1%"
]
}