forked from rebelchris/daily-dev-tips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 891 Bytes
/
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
{
"name": "@example/starter",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"collect": "node --experimental-modules scripts/collect.mjs",
"start": "astro dev",
"build": "npm run collect && NODE_OPTIONS=--max_old_space_size=4096 astro build",
"dbuild": "NODE_OPTIONS=--max_old_space_size=4096 DEBUG=vite:* astro build",
"preview": "astro preview",
"format": "yarn prettier -w ."
},
"devDependencies": {
"@astrojs/tailwind": "^2.1.3",
"astro": "1.6.12",
"autoprefixer": "^10.4.13",
"feed": "^4.2.2",
"prettier-plugin-astro": "^0.7.0",
"tailwindcss": "^3.2.4"
},
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.8",
"moment": "^2.29.4",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"twitter-api-client": "^1.6.1"
}
}