-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.24 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 4.24 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"private": true,
"workspaces": [
"packages/*"
],
"name": "stacks",
"repository": {
"type": "git",
"url": "https://github.com/StackExchange/Stacks.git"
},
"license": "MIT",
"scripts": {
"build": "npm run build -workspaces -if-present",
"prepublishOnly": "npm run build -workspaces -if-present",
"version": "changeset version && npm install --package-lock-only",
"release": "npm run build && changeset publish",
"format": "npm run format -workspaces -if-present",
"lint": "npm run lint -workspaces -if-present",
"start": "npm run dev -w packages/stacks-docs-next",
"test": "npm run test -workspaces -if-present"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.2",
"@highlightjs/cdn-assets": "^11.11.1",
"@open-wc/testing": "^4.0.0",
"@remcovaes/web-test-runner-vite-plugin": "^1.4.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-replace": "^6.0.3",
"@stackoverflow/prettier-config": "^1.0.0",
"@stackoverflow/stacks-icons": "^7.0.0-beta.21",
"@stackoverflow/stacks-icons-legacy": "npm:@stackoverflow/stacks-icons@^6.9.0",
"@storybook/addon-a11y": "^10.1.11",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-links": "^10.1.11",
"@storybook/addon-svelte-csf": "^5.0.10",
"@storybook/svelte-vite": "^10.1.11",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/svelte": "^5.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/babel__core": "^7.20.5",
"@types/cssbeautify": "^0.3.5",
"@types/less": "^3.0.8",
"@types/mocha": "^10.0.10",
"@typescript-eslint/parser": "^8.53.0",
"@web/dev-server-esbuild": "^1.0.4",
"@web/dev-server-rollup": "^0.6.4",
"@web/test-runner": "^0.20.2",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.1",
"@web/test-runner-visual-regression": "^0.10.0",
"apca-check": "^0.1.1",
"chai-dom": "^1.12.1",
"colorjs.io": "^0.6.1",
"concurrently": "^9.2.1",
"css-loader": "^7.1.2",
"cssbeautify": "^0.3.1",
"cssnano": "^7.1.2",
"eleventy-plugin-highlightjs": "^1.1.0",
"eleventy-plugin-llms-txt": "^1.2.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-chai-friendly": "^1.1.0",
"eslint-plugin-no-unsanitized": "^4.1.4",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-svelte": "^3.14.0",
"globals": "^17.0.0",
"htm": "^3.1.1",
"less-loader": "^12.3.0",
"markdown-it": "^14.1.1",
"mini-css-extract-plugin": "^2.9.4",
"postcss-less": "^6.0.0",
"postcss-loader": "^8.2.0",
"prettier": "^3.8.0",
"prettier-plugin-svelte": "^3.4.1",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.97.2",
"sinon": "^21.0.1",
"storybook": "^10.1.11",
"stylelint": "^17.0.0",
"stylelint-config-recommended": "^18.0.0",
"stylelint-config-standard": "^40.0.0",
"svelte": "^5.46.4",
"svelte-check": "^4.3.5",
"svelte-preprocess": "^6.0.3",
"terser-webpack-plugin": "^5.3.16",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vite": "^7.3.1",
"vitest": "^4.0.17",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
},
"browserslist": [
"last 2 versions",
"not dead",
"not ie > 0",
"not op_mini all",
"not baidu > 0",
"not and_ff > 0",
"not and_qq > 0",
"not kaios > 0",
"not op_mob > 0",
"not ie_mob > 0",
"not and_uc > 0",
"not Samsung > 0",
"not Android > 0"
],
"overrides": {
"aria-query": "~5.0.0",
"@web/dev-server-core": "0.7.1",
"playwright": "1.55.1"
}
}