-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.71 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
53
54
55
56
57
58
59
{
"name": "fs",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build:ts && tsc -p test/tsconfig.test.json && cross-env TS_NODE_FILES=true tap --ts test/**/*.test.ts",
"start": "npm run build:ts && fastify start -l info dist/app.js",
"build:ts": "tsc",
"dev": " tsc && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"tsc -w\" \"fastify start --ignore-watch=.ts$ -w -l info -P dist/app.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/mongoose": "^5.11.97",
"@types/pino": "^6.3.11",
"aws-sdk": "^2.1044.0",
"bcryptjs": "^2.4.3",
"date-fns": "^2.25.0",
"fastify": "^3.23.0",
"fastify-auth": "^1.1.0",
"fastify-autoload": "^3.3.1",
"fastify-cli": "^2.13.0",
"fastify-cors": "^6.0.2",
"fastify-file-upload": "^3.0.1",
"fastify-helmet": "^5.3.2",
"fastify-jwt": "^3.0.1",
"fastify-multer": "^2.0.2",
"fastify-multipart": "^5.0.2",
"fastify-nodemailer": "^5.0.0",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.0",
"fastify-url-data": "^3.0.3",
"handlebars": "^4.7.7",
"install": "^0.13.0",
"mongoose": "^5.13.7",
"multer": "^1.4.4",
"multer-s3": "^2.10.0",
"nodemailer-sendinblue-transport": "^1.2.3",
"npm": "^8.2.0",
"point-of-view": "^4.15.2",
"pug": "^3.0.2",
"validator": "^13.6.0"
},
"devDependencies": {
"@types/node": "^15.14.9",
"@types/tap": "^15.0.0",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"fastify-tsconfig": "^1.0.1",
"tap": "^15.0.9",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
}
}