-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "general-use-api",
"version": "1.0.0",
"description": "General use API.",
"main": "src/index.ts",
"repository": "[email protected]:jae1911/general-use-api.git",
"author": "Jae Lo Presti (j4) <[email protected]>",
"license": "GPL-3.0-or-later",
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/rate-limit": "^8.0.3",
"@indot/rainbowvis": "^1.0.2",
"@types/figlet": "^1.5.7",
"dotenv": "^16.3.1",
"fastify": "^4.28.1",
"fastify-graceful-shutdown": "^3.5.1",
"fastify-healthcheck": "^4.4.0",
"figlet": "^1.6.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-functional": "^6.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"tsutils": "^3.21.0"
},
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts"
}
}