forked from lpbayliss/fastify-ts-rest-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
package.json
File metadata and controls
54 lines (54 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
{
"name": "fastify-ts-rest-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint . --ext .ts .",
"lint:fix": "eslint . --ext .ts . --fix",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^8.3.0",
"@fastify/helmet": "^11.1.1",
"@ts-rest/core": "^3.30.2",
"@ts-rest/fastify": "^3.30.2",
"@types/node": "^20.6.0",
"default-import": "^1.1.5",
"dotenv": "^16.3.1",
"fastify": "^4.23.0",
"pino": "^8.15.1",
"pino-pretty": "^10.2.0",
"typescript": "^5.2.2",
"zod": "^3.22.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.49.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}