-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 KB
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
52
53
54
55
{
"name": "seamless-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"start": "node build/src/index.js",
"build": "tsc",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix",
"test": "ava build/test/**/*.test.js",
"db:generate": "drizzle-kit generate",
"dev": "tsx watch --env-file=.env src/index.ts"
},
"author": "Your Name Here",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/bcrypt": "^5.0.2",
"@types/dotenv-safe": "^8.1.6",
"@types/inline-css": "^3.0.3",
"@types/node": "^22.15.2",
"@types/nodemailer": "^6.4.17",
"@types/pg": "^8.11.14",
"ava": "^6.2.0",
"drizzle-kit": "^0.31.0",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.1",
"@fastify/helmet": "^13.0.1",
"@fastify/rate-limit": "^10.2.2",
"@fastify/swagger": "^9.5.0",
"@fastify/swagger-ui": "^5.2.2",
"bcrypt": "^5.1.1",
"dayjs": "^1.11.13",
"dotenv-safe": "^9.1.0",
"drizzle-orm": "^0.43.1",
"eta": "^3.5.0",
"fastify": "^5.3.2",
"gaxios": "^7.1.1",
"inline-css": "^4.0.3",
"nodemailer": "^6.10.1",
"pg": "^8.15.6"
}
}