-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 913 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 913 Bytes
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
{
"name": "newsletter_to_rss",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"license": "MIT",
"dependencies": {
"@prisma/client": "^2.26.0",
"@sinclair/typebox": "^0.17.1",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"fastify": "^3.18.0",
"fastify-autoload": "^3.8.0",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.1"
},
"scripts": {
"start:dev": "ts-node-dev --poll --exit-child --transpile-only ./src/server.ts",
"start:docker": "docker compose up",
"start": "tsc && node ./dist/index.js",
"prisma:generate": "npx prisma generate"
},
"devDependencies": {
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"prettier": "^2.3.2",
"prisma": "^2.26.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.4"
}
}