-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.01 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
{
"name": "md-editor",
"version": "1.5.0",
"lint-staged": {
"*.{ts,html,css,scss,md,json}": [
"prettier --write"
],
"*.ts": [
"eslint --max-warnings=0"
]
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:gh": "ng build --base-href /markdown_editor/",
"watch": "ng build --watch --configuration development",
"prepare": "husky",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"test": "ng test",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:debug": "playwright test --debug",
"e2e:report": "playwright show-report"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.15",
"@angular/common": "^20.3.15",
"@angular/compiler": "^20.3.15",
"@angular/core": "^20.3.15",
"@angular/forms": "^20.3.15",
"@angular/platform-browser": "^20.3.15",
"@angular/platform-browser-dynamic": "^20.3.15",
"@angular/router": "^20.3.15",
"@tailwindcss/postcss": "^4.1.13",
"dompurify": "^3.1.6",
"github-markdown-css": "^5.8.1",
"highlight.js": "^11.11.1",
"marked": "^17.0.1",
"postcss": "^8.5.6",
"rxjs": "~7.8.0",
"tailwindcss": "^4.1.13",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.3.13",
"@angular/cli": "^20.3.13",
"@angular/compiler-cli": "^20.3.15",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@playwright/test": "^1.57.0",
"@types/jest": "^30.0.0",
"angular-eslint": "21.0.1",
"baseline-browser-mapping": "^2.9.11",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-preset-angular": "^16.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"typescript": "~5.9.3",
"typescript-eslint": "8.46.4"
}
}