-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "createitemapplet",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"postinstall": "cd node_modules/@wikimedia/codex && npm install && npm run build-all-if-missing || exit 0",
"buildPreview": "NETLIFY=1 vite build",
"format": "prettier . --write",
"preview": "vite preview",
"prepare": "husky install",
"test:lint-scripts": "eslint --ext .js,.ts,vue --ignore-path .gitignore .",
"test:lint-styles": "stylelint src/**/*.{css,scss,vue}"
},
"peer-dependencies": {
"vue": "3.2.27"
},
"devDependencies": {
"@types/jquery": "^3.5.11",
"@types/lodash": "^4.14.178",
"@types/node": "^16.11.21",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"@vitejs/plugin-vue": "^2.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@wikimedia/codex": "github:wikimedia/design-codex#main",
"@wmde/wikibase-datamodel-types": "^0.2.0",
"eslint": "^8.8.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.4.1",
"husky": "^7.0.4",
"jquery": "^3.6.0",
"lint-staged": "^12.3.3",
"lodash.debounce": "^4.0.8",
"pinia": "^2.0.6",
"prettier": "^2.5.1",
"sass": "^1.45.0",
"stylelint": "^14.3.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-recommended-vue": "^1.1.0",
"stylelint-config-standard-scss": "^3.0.0",
"typescript": "^4.4.4",
"vite": "^2.7.2",
"vue": "3.2.27",
"vue-tsc": "^0.31.1",
"wikimedia-ui-base": "^0.19.0"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix"
],
"*.{css,scss,vue}": "stylelint --fix",
"*": [
"prettier --ignore-unknown --write"
]
}
}