-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "node-do-zero-ts",
"version": "1.0.0",
"private": true,
"description": "Basic CRUD application with Fastify, PostgreSQL and TypeScript",
"keywords": [
"crud",
"fastify",
"postgresql",
"typescript"
],
"author": "Marcelo Knob",
"license": "MIT",
"type": "module",
"module": "src/server.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rm -rf dist/",
"prebuild": "npm run clean",
"build": "tsc",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"lint": "eslint src --ext .ts",
"create:tables": "tsx src/create-table.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"fastify": "^4.24.3",
"postgres": "^3.4.3"
},
"devDependencies": {
"@tsconfig/node-lts": "^18.12.5",
"@types/node": "^20.9.4",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"dotenv": "^16.3.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^5.0.1",
"tsx": "^4.3.0",
"typescript": "^5.3.2"
}
}