-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 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
{
"name": "super-simple-fastify-server",
"version": "0.1.2",
"description": "Super simple fastify web server for rapid dev/test",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adamhamlin/super-simple-fastify-server.git"
},
"keywords": [
"web server",
"simple web server",
"fastify server",
"fastify",
"test server",
"simple test server"
],
"author": "Adam C Hamlin <achamlin@gmail.com>",
"license": "MIT",
"scripts": {
"start": "ts-node ./entry-point.ts",
"test": "jest",
"_lint": "eslint --fix",
"_lint:check": "eslint",
"_format": " prettier --write --ignore-unknown",
"_format:check": "prettier --check --ignore-unknown",
"fix": "npm run _lint . && npm run _format .",
"check": "npm run _lint:check . && npm run _format:check .",
"compile": "tsc -p ./",
"watch": "npm run compile -- -watch",
"prepare": "husky && npm run compile"
},
"lint-staged": {
"*.ts": "npm run _lint -- --cache",
"*": "npm run _format"
},
"dependencies": {
"fastify": "^4.28.1",
"pino-pretty": "^11.2.1"
},
"devDependencies": {
"@adamhamlin/eslint-config": "^1.3.0",
"@types/jest": "^29.5.12",
"@types/stream-chain": "^2.1.0",
"@types/stream-json": "^1.7.7",
"axios": "^1.7.2",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"radashi": "^12.1.0",
"stream-chain": "^2.2.5",
"stream-json": "^1.8.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}