-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
68 lines (68 loc) · 2.15 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
{
"name": "torontojs-blog",
"version": "0.0.3",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"volta": {
"node": "20.11.0"
},
"scripts": {
"prepare": "husky",
"postinstall": "astro sync",
"predev": "astro sync",
"dev": "astro dev --site=https://localhost:3000/",
"start": "npm run dev",
"build": "astro check && astro build",
"prepreview": "npm run build",
"preview": "astro preview --site=https://localhost:3000/",
"typecheck": "tsc --noEmit",
"lint:js": "eslint src --fix",
"lint:md": "astro check",
"lint": "npm run typecheck && npm run lint:js && npm run lint:md",
"astro": "astro"
},
"dependencies": {
"open-props": "^1.7.6"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@iconify-json/brandico": "^1.2.0",
"@iconify-json/fa6-brands": "^1.2.0",
"@iconify-json/mdi": "^1.2.0",
"@iconify-json/uil": "^1.2.0",
"@shikijs/transformers": "^1.22.0",
"@shikijs/twoslash": "^1.22.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "8.7.0",
"@vite-pwa/astro": "^0.4.3",
"astro": "^4.16.6",
"astro-icon": "^1.1.1",
"eslint": "^9.11.1",
"eslint-plugin-astro": "^1.2.4",
"globals": "15.9.0",
"husky": "^9.1.6",
"typescript": "^5.6.2"
},
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@^1",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"object.assign": "npm:@nolyfill/object.assign@^1",
"object.entries": "npm:@nolyfill/object.entries@^1",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1",
"object.values": "npm:@nolyfill/object.values@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1",
"deep-equal": "npm:@nolyfill/deep-equal@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"safe-regex-test": "npm:@nolyfill/safe-regex-test@^1",
"string.prototype.includes": "npm:@nolyfill/string.prototype.includes@^1"
}
}