-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "clean-fastify",
"version": "1.0.0",
"main": "dist/index",
"typings": "dist/index",
"license": "MIT",
"dependencies": {
"@inip/http-codes": "^2.0.0",
"@types/ws": "^8.5.3",
"ajv-formats": "^2.1.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.28.1",
"cors": "^2.8.5",
"fastify": "^3.27.2",
"fastify-cors": "^6.0.3",
"fastify-helmet": "^7.0.1",
"fastify-multer": "^2.0.2",
"fastify-plugin": "^3.0.1",
"fastify-swagger": "^5.0.0",
"fastify-websocket": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.45"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"pino-pretty": "^7.5.3",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "nodemon src/index.ts",
"dev:docker": "nodemon src/index.ts -L",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
}
}