-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "botyrest",
"version": "0.1.1",
"description": "RestFul API Framework",
"main": "dist/index",
"types": "dist/types/index",
"scripts": {
"prepare": "npm run build:prod",
"build:dev": "rm -rf ./dist && mkdir ./dist && cp -R ./src/public/ ./dist && npx tsc --watch",
"build:prod": "rm -rf ./dist && mkdir ./dist && cp -R ./src/public/ ./dist && npx tsc",
"start:prod": "node ./dist/app.js",
"start:dev": "node --watch ./dist/app.js"
},
"keywords": [
"restful",
"rest",
"api",
"framework",
"typescript",
"node"
],
"author": "Pxndxs",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.16.14",
"@types/uuid": "^9.0.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@fastify/cors": "^8.3.0",
"@fastify/formbody": "^7.4.0",
"@fastify/helmet": "^10.1.1",
"@fastify/middie": "^8.3.0",
"@fastify/rate-limit": "^8.0.1",
"@fastify/static": "^6.10.1",
"class-validator": "^0.14.0",
"fastify": "^4.17.0",
"reflect-metadata": "^0.1.13",
"uuid": "^9.0.0"
}
}