-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
112 lines (112 loc) · 3.89 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
{
"name": "@stackoverflow/stacks-editor",
"version": "0.10.7",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/StackExchange/Stacks-Editor.git"
},
"main": "./dist/app.bundle.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"start": "webpack serve --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prod.js",
"build:dev": "webpack --config config/webpack.dev.js",
"build:gh-pages": "webpack --config config/webpack.dev.js --mode=production --",
"build:stats": "webpack --config config/webpack.prod.js --entry ./src/index.ts --profile --json > stats.json",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest --config config/jest-unit.config.js",
"test:e2e": "npx playwright test --config config/playwright.config.ts",
"release": "standard-version",
"prepublishOnly": "npm run build && tsc --module ES6 --sourceMap false",
"prepare": "husky install"
},
"keywords": [],
"author": "Stack Exchange Inc",
"license": "MIT",
"sideEffects": [
"*.css"
],
"commitlint": {
"extends": [
"@stackoverflow"
]
},
"eslintConfig": {
"extends": [
"./config/.eslintrc.js"
]
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@playwright/test": "^1.42.1",
"@stackoverflow/commitlint-config": "^1.0.0",
"@stackoverflow/prettier-config": "^1.0.0",
"@stackoverflow/stacks": "^2.3.2",
"@stackoverflow/tsconfig": "^1.0.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.1",
"cssnano": "^7.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-no-unsanitized": "^4.0.2",
"highlight.js": "^11.9.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"liquidjs-loader": "^1.0.1",
"mini-css-extract-plugin": "^2.8.1",
"mini-svg-data-uri": "^1.4.4",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@lezer/highlight": "^1.2.0",
"@lezer/markdown": "^1.2.0",
"@stackoverflow/stacks-icons": "^6.0.2",
"@types/markdown-it": "13.0.7",
"markdown-it": "^13.0.2",
"orderedmap": "^2.1.1",
"prosemirror-commands": "^1.5.2",
"prosemirror-highlightjs": "^0.9.1",
"prosemirror-history": "^1.4.0",
"prosemirror-inputrules": "^1.4.0",
"prosemirror-keymap": "^1.2.2",
"prosemirror-lezer": "^0.0.5",
"prosemirror-markdown": "^1.12.0",
"prosemirror-model": "^1.19.4",
"prosemirror-schema-basic": "^1.2.2",
"prosemirror-schema-list": "^1.3.0",
"prosemirror-state": "^1.4.3",
"prosemirror-transform": "^1.8.0",
"prosemirror-utils": "^1.2.1-0",
"prosemirror-view": "^1.33.3"
},
"peerDependencies": {
"@stackoverflow/stacks": "^2.3.0",
"highlight.js": "^11.6.0"
}
}