-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 858 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
31
32
33
34
35
{
"name": "ai-powered-blog",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"dev": "tsx --watch .",
"build": "npm install && tsc && cp -R src/templates build/",
"post-gen": "tsx src/generator.ts",
"start": "node ./build/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/view": "^9.0.0",
"@google/generative-ai": "^0.5.0",
"@prisma/client": "^5.12.1",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"fastify": "^4.26.2",
"showdown": "^2.1.0"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/markdown-it": "^14.0.0",
"@types/node": "^20.12.5",
"@types/showdown": "^2.0.6",
"prisma": "^5.12.1",
"tsx": "^4.7.2",
"typescript": "^5.4.4"
}
}