-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "fyreapi",
"version": "0.1.0",
"description": "Multipurpose API for FyreNodes and Fyre Software. Built on Fastify in TypeScript.",
"main": "index.ts",
"scripts": {
"start": "yarn run build; yarn run prod",
"build": "rm -r ./dist; tsc --build; tsc-alias -p tsconfig.json",
"prod": "NODE_ENV=production node -r dotenv/config dist/index.js",
"dev": "clear; NODE_ENV=development ts-node-dev -r tsconfig-paths/register -r dotenv/config --project tsconfig.json index.ts",
"lint": "prettier --check 'src/**/*'",
"lint:fix": "prettier --write src/**/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FyreNodes/API.git"
},
"author": "Liam L <TheFallenSpirit>",
"bugs": {
"url": "https://github.com/FyreNodes/API/issues"
},
"homepage": "https://github.com/FyreNodes/API#readme",
"devDependencies": {
"@types/figlet": "^1.5.4",
"@types/node": "^18.0.0",
"@types/nodemailer": "^6.4.5",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.6.10",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@fastify/express": "^2.0.1",
"@fastify/view": "^7.0.0",
"axios": "^0.27.2",
"chalk": "4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"fastify": "^4.0.3",
"figlet": "^1.5.2",
"mongodb": "^4.7.0",
"nodemailer": "^6.7.7"
},
"license": "Apache-2.0",
"packageManager": "yarn@3.2.1"
}