-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.94 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.94 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
{
"name": "jaysingh-dev",
"private": true,
"version": "1.2.0",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"prepare": "husky",
"start": "npm run dev",
"dev": "concurrently \"npm:dev:11ty\" \"npm:dev:css\"",
"dev:11ty": "eleventy --serve",
"dev:css": "tailwindcss -i ./css/input.css -o ./_site/css/styles.css --watch",
"build": "npm run build:css && npm run build:mermaid && eleventy",
"build:css": "tailwindcss -i ./css/input.css -o ./_site/css/styles.css --minify",
"build:mermaid": "node scripts/render-mermaid.js",
"clean": "rm -rf _site",
"lint": "eslint .",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:unit:watch": "vitest tests/unit"
},
"dependencies": {
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.1",
"mermaid": "^11.12.2",
"rehype-highlight": "^7.0.2",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@eslint/js": "^9.9.1",
"@mermaid-js/mermaid-cli": "^11.12.0",
"@playwright/test": "^1.50.0",
"@seontechnologies/playwright-utils": "^3.13.1",
"@types/js-yaml": "^4.0.9",
"autoprefixer": "^10.4.18",
"concurrently": "^9.2.1",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vitest": "^4.0.18",
"semantic-release": "^25.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"husky": "^9.1.7"
}
}