-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "krimlabs.com",
"version": "0.0.1",
"module": "index.ts",
"dependencies": {
"@astrojs/check": "^0.3.3",
"@astrojs/react": "^3.0.7",
"@astrojs/tailwind": "^5.0.3",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"astro": "^4.0.6",
"change-case": "^5.3.0",
"chokidar": "^3.5.3",
"city-timezones": "^1.2.1",
"clsx": "^2.0.0",
"contentlayer": "^0.3.4",
"date-fns": "^3.0.6",
"decap-server": "^3.0.1",
"frappe-charts": "^1.6.2",
"htmr": "^1.0.2",
"marked": "^11.1.0",
"marked-highlight": "^2.1.0",
"npm-run-all": "^4.1.5",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shiki": "0.9.3",
"tailwindcss": "^3.3.6",
"update-browserslist-db": "latest",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"bun-types": "^1.0.18",
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.2",
"typescript": "^5.3.3"
},
"scripts": {
"dev:astro": "astro dev",
"build:astro": "astro build",
"preview:astro": "astro preview",
"astro": "astro",
"dev:cms": "PORT=43999 bun run decap-server",
"dev:contentlayer": "bun run contentlayer dev --verbose",
"build:contentlayer": "bun run contentlayer build --verbose",
"build:img": "bun run optimize-img.js",
"dev": "run-p dev:*",
"build": "run-s build:contentlayer build:img build:astro"
},
"type": "module"
}