forked from StackExchange/Stacks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.64 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
{
"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": "1.3.0",
"files": [
"dist",
"lib"
],
"main": "./dist/js/stacks.js",
"types": "./dist/index.d.ts",
"style": "./dist/css/stacks.css",
"less": "./lib/css/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": "backstop test",
"approve": "backstop approve",
"prepublishOnly": "npm run build",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check . --end-of-line auto"
},
"license": "MIT",
"dependencies": {
"@popperjs/core": "^2.11.5",
"stimulus": "^2.0.0"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@highlightjs/cdn-assets": "^11.6.0",
"@stackoverflow/stacks-editor": "^0.7.0",
"@stackoverflow/stacks-icons": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"backstopjs": "^6.1.0",
"concurrently": "^7.3.0",
"css-loader": "^6.7.1",
"cssnano": "^5.1.12",
"docsearch.js": "^2.6.3",
"eleventy-plugin-highlightjs": "^1.1.0",
"eleventy-plugin-nesting-toc": "^1.3.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-unsanitized": "^4.0.1",
"jquery": "^3.6.0",
"less-loader": "^11.0.0",
"list.js": "^2.3.1",
"markdown-it": "^13.0.1",
"mini-css-extract-plugin": "^2.6.1",
"postcss-less": "^6.0.0",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"stylelint": "^14.9.1",
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-standard": "^26.0.0",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"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"
]
}