-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "astoria-tech-meetup",
"version": "0.0.1",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"astro": "astro",
"build": "npm run check && astro build && npx @divriots/jampack ./dist",
"check": "npm run lintpkg && npm run style && astro check",
"dev": "astro dev",
"fix": "npm run lintpkg:fix && npm run style:fix && ./script/lintyamlall",
"genimage": "npm -C ./packages/image-generator run cli --",
"lintpkg": "sort-package-json --check",
"lintpkg:fix": "sort-package-json",
"preview": "astro preview",
"start": "astro dev",
"style": "prettier --check .",
"style:fix": "prettier --write ."
},
"dependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/rss": "^4.0.5",
"@astrojs/tailwind": "^5.1.0",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.11.24",
"astro": "^4.7.0",
"cheerio": "^1.0.0-rc.12",
"markdown-it": "^14.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"yaml": "^2.4.1"
},
"devDependencies": {
"@divriots/jampack": "^0.24.0",
"@github/prettier-config": "^0.0.6",
"autoprefixer": "^10.4.19",
"change-case": "^5.4.4",
"deep-cleaner": "^2.0.0-alpha.3",
"deepmerge": "^4.3.1",
"postcss-import": "^16.1.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"sort-package-json": "^2.10.0",
"type-flag": "^3.0.0",
"zx": "^8.0.2"
}
}