-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "random-quote-machine",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm run generate-quotes && next dev",
"generate-quotes": "ts-node-esm --transpile-only scripts/generate-quotes.ts",
"build": "pnpm run generate-quotes && next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ."
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.17",
"@types/node": "18.15.3",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@vercel/og": "^0.4.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"next": "13.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"slugify": "^1.6.5",
"typescript": "5.0.2",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/line-column": "^1.0.0",
"@types/ms": "^0.7.31",
"autoprefixer": "^10.4.13",
"chalk": "^5.2.0",
"line-column": "^1.0.2",
"ms": "^2.1.3",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"zod": "^3.20.2",
"zod-validation-error": "^1.0.0"
}
}