-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 1.87 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "typescript-node-starter",
"version": "1.0.0",
"description": "Typescript Node Starter",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc -p .",
"start": "node dist/index.js",
"prepare": "husky",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx}",
"lint": "eslint ./src",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nirnejak/typescript-node-starter.git"
},
"keywords": [
"Typescript",
"Node",
"Fastify",
"Drizzle"
],
"author": "Jitendra Nirnejak",
"license": "MIT",
"bugs": {
"url": "https://github.com/nirnejak/typescript-node-starter/issues"
},
"homepage": "https://github.com/nirnejak/typescript-node-starter#readme",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/cors": "^2.8.17",
"@types/heapdump": "^0.3.4",
"@types/node": "^22.13.4",
"drizzle-kit": "^0.30.4",
"eslint": "^9.20.1",
"eslint-config-love": "^118.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-security": "^3.0.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"nodemon": "^3.1.9",
"prettier": "^3.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
},
"dependencies": {
"@fastify/helmet": "^13.0.1",
"@neondatabase/serverless": "^0.10.4",
"colorette": "^2.0.20",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.39.3",
"fastify": "^5.2.1"
},
"lint-staged": {
"*.{js,ts}": "eslint"
},
"volta": {
"node": "22.11.0"
}
}