-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 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
{
"name": "astoria-tech-meetup",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"astro": "astro",
"build": "npm run optimize-photos && npm run check && astro build && npx @divriots/jampack ./dist",
"check": "npm run lintpkg && npm run style && astro check",
"dev": "npm run optimize-photos && astro dev",
"optimize-photos": "node script/optimize-photos.mjs",
"fix": "npm run lintpkg:fix && npm run style:fix",
"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/tailwind": "^5.1.0",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.11.24",
"astro": "^4.7.0",
"lucide-astro": "^0.542.0",
"markdown-it": "^14.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"@divriots/jampack": "^0.24.0",
"@github/prettier-config": "^0.0.6",
"autoprefixer": "^10.4.19",
"postcss-import": "^16.1.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"sharp": "^0.34.5",
"sort-package-json": "^2.10.0"
}
}