-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.62 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
{
"type": "module",
"name": "notifications",
"description": "This project was bootstrapped with Fastify-CLI.",
"version": "1.0.0",
"main": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build:ts && tsc -p test/tsconfig.json && FASTIFY_AUTOLOAD_TYPESCRIPT=1 node --test --experimental-test-coverage --loader ts-node/esm test/**/*.ts",
"start": "yarn run build:ts && fastify start -l info dist/app.js",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"dev": "ya run build:ts && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"npm:watch:ts\" \"npm:dev:start\"",
"dev:start": "fastify start --ignore-watch=.ts$ -w -l info -P dist/app.js",
"lint": "prettier --check . && eslint . --ext .ts",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.0.0",
"@fastify/bearer-auth": "^9.4.0",
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/csrf-protection": "^6.4.1",
"@fastify/env": "^4.3.0",
"@fastify/jwt": "^8.0.1",
"@fastify/mongodb": "^8.0.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/sensible": "^5.0.0",
"fast-json-stringify": "^5.15.1",
"fastify": "^4.26.1",
"fastify-cli": "^6.1.1",
"fastify-plugin": "^4.0.0",
"firebase-admin": "^12.1.0",
"https-proxy-agent": "^7.0.4",
"jose": "^5.3.0",
"kafkajs": "^2.2.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.4.4",
"c8": "^9.0.0",
"concurrently": "^8.2.2",
"fastify-tsconfig": "^2.0.0",
"prettier": "^3.2.5",
"ts-node": "^10.4.0",
"typescript": "^5.2.2"
}
}