-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
115 lines (115 loc) · 4.17 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@stackoverflow/stacks",
"description": "Stack Overflow’s CSS and Design Pattern Library. Stacks is an atomic CSS library with classes and components for rapidly building Stack Overflow.",
"repository": {
"type": "git",
"url": "https://github.com/StackExchange/Stacks.git"
},
"version": "2.6.0",
"files": [
"dist",
"lib",
"!lib/**/*.test.*"
],
"main": "./dist/js/stacks.js",
"types": "./dist/index.d.ts",
"style": "./dist/css/stacks.css",
"less": "./lib/stacks.less",
"unpkg": "dist/css/stacks.min.css",
"scripts": {
"start": "concurrently -n w: npm:start:*",
"build": "concurrently -n w: npm:build:*",
"build:bundle": "webpack --mode=production",
"build:docs": "webpack --mode=production --config ./docs/webpack.config.js && cd ./docs && eleventy",
"start:webpack": "webpack --watch --config ./docs/webpack.config.js",
"start:eleventy": "cd ./docs && eleventy --serve",
"test": "npm run test:less && npm run test:unit && npm run test:a11y && npm run test:visual",
"test:a11y": "web-test-runner --group=a11y",
"test:unit": "web-test-runner --group=unit",
"test:unit:watch": "web-test-runner --group=unit --watch",
"test:visual": "pwsh run-test-visual.ps1 npx web-test-runner --group=visual",
"test:less": "vitest run .less.test.ts",
"test:less:update": "npm run test:less -- -u",
"prepublishOnly": "npm run build",
"format": "prettier --write ./lib",
"lint": "concurrently -n w: npm:lint:*",
"lint:ts": "eslint ./lib",
"lint:css": "stylelint ./lib",
"lint:format": "prettier --check ./lib"
},
"license": "MIT",
"dependencies": {
"@hotwired/stimulus": "^3.2.2",
"@popperjs/core": "^2.11.8"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@eslint/js": "^9.14.0",
"@highlightjs/cdn-assets": "^11.10.0",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-replace": "^5.0.7",
"@stackoverflow/stacks-editor": "^0.10.7",
"@stackoverflow/stacks-icons": "^6.0.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/user-event": "^14.5.2",
"@types/cssbeautify": "^0.3.5",
"@types/less": "^3.0.6",
"@types/mocha": "^10.0.9",
"@web/dev-server-esbuild": "^1.0.2",
"@web/dev-server-rollup": "^0.6.4",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"@web/test-runner-visual-regression": "^0.10.0",
"apca-check": "^0.1.1",
"colorjs.io": "^0.5.2",
"concurrently": "^9.0.1",
"css-loader": "^7.1.2",
"cssbeautify": "^0.3.1",
"cssnano": "^7.0.6",
"docsearch.js": "^2.6.3",
"eleventy-plugin-highlightjs": "^1.1.0",
"eleventy-plugin-nesting-toc": "^1.3.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-unsanitized": "^4.1.2",
"jquery": "^3.7.1",
"less-loader": "^12.2.0",
"list.js": "^2.3.1",
"markdown-it": "^14.1.0",
"mini-css-extract-plugin": "^2.9.2",
"postcss-less": "^6.0.0",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"rollup-plugin-postcss": "^4.0.2",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-standard": "^36.0.1",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vitest": "^2.1.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"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"
}
}