-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "fastify-immail-meet",
"version": "1.0.0",
"main": "src/index.js",
"type": "module",
"engines": {
"node": "^16.14.x",
"yarn": "^1.22.x",
"npm": "^8.x.x"
},
"license": "(MIT OR Apache-2.0)",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify --clear src/index.ts"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^27.0.2",
"@types/node": "17.0.31",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.4.3"
},
"dependencies": {
"@fastify/cors": "^7.0.0",
"axios": "0.27.2",
"dotenv": "^16.0.0",
"fastify": "^3.29.0",
"http-status-codes": "^2.2.0",
"pino": "^7.11.0",
"pino-pretty": "^7.6.1",
"table": "^6.7.2"
}
}