-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "tapped-api",
"version": "1.0.0",
"description": "enterprise api for tapped ai",
"scripts": {
"prepare": "husky",
"build": "tsc",
"dev": "nodemon --watch 'src/**/*.ts' src/index.ts",
"start": "node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TappedOpenSource/tapped-api.git"
},
"author": "Johannes Naylor <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TappedOpenSource/tapped-api/issues"
},
"homepage": "https://github.com/TappedOpenSource/tapped-api#readme",
"dependencies": {
"@fastify/rate-limit": "^9.1.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^4.0.0",
"@google-cloud/storage": "^7.11.2",
"@scalar/fastify-api-reference": "^1.24.19",
"algoliasearch": "^4.23.3",
"dotenv": "^16.4.5",
"fastify": "^4.28.0",
"firebase-admin": "^12.2.0",
"generate-api-key": "^1.0.2",
"pino": "^9.2.0"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/node": "^20.14.7",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-security": "^2.1.1",
"eslint-plugin-sonarjs": "^0.24.0",
"globals": "^15.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"typescript-eslint": "^7.3.1"
}
}