forked from neondatabase-labs/preview-branches-with-fly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
45
46
47
{
"name": "node-drizzle-neon-api",
"version": "1.0.0",
"description": "A Node.js API built using Drizzle ORM and Neon",
"main": "dist/index.js",
"scripts": {
"dev": "pnpm tsx ./src/index.ts",
"db:generate": "drizzle-kit generate:pg --schema ./src/db/schema.ts",
"db:migrate": "tsx ./src/db/migrate.ts",
"format": "prettier --write .",
"lint": "eslint ./src --fix",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"build": "pnpm tsc --build",
"start": "node dist/index.js"
},
"keywords": [
"neon",
"drizzle",
"node",
"typescript",
"api"
],
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1",
"drizzle-orm": "^0.29.3",
"fastify": "^4.25.2",
"postgres": "^3.4.3"
},
"devDependencies": {
"@types/node": "^20.10.8",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"drizzle-kit": "^0.20.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.3"
},
"engines": {
"node": ">=18.0.0"
}
}