-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "notiway",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch --inspect src/server.ts",
"start": "node build/server.js",
"build": "babel src --extensions \".ts\" --out-dir build --copy-files",
"test:create-prisma-environment": "npm link ./prisma/vitest-environment-prisma",
"test:install-prisma-environment": "npm link vitest-environment-prisma",
"test": "vitest run --dir src/use-cases",
"test:watch": "vitest --dir src/use-cases",
"pretest:e2e": "run-s test:create-prisma-environment test:install-prisma-environment",
"test:e2e": "vitest run --dir src/http",
"test:e2e:watch": "vitest --dir src/http",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/core": "7.21.4",
"@babel/node": "7.20.7",
"@babel/preset-env": "7.21.4",
"@babel/preset-typescript": "7.21.4",
"@rocketseat/eslint-config": "1.2.0",
"@types/bcryptjs": "2.4.2",
"@types/node": "18.15.3",
"@types/nodemailer": "6.4.7",
"@types/supertest": "2.0.12",
"@vitest/coverage-c8": "0.29.2",
"@vitest/ui": "0.29.2",
"babel-plugin-module-resolver": "5.0.0",
"eslint": "8.36.0",
"ioredis-mock": "8.7.0",
"mongodb-memory-server": "8.12.2",
"npm-run-all": "4.1.5",
"prisma": "4.11.0",
"redoc-cli": "0.13.21",
"supertest": "6.3.3",
"tsup": "6.6.3",
"tsx": "3.12.5",
"types-fastify-socket.io": "0.0.1",
"typescript": "4.9.5",
"vite-tsconfig-paths": "4.0.7",
"vitest": "0.29.2"
},
"dependencies": {
"@fastify/cookie": "8.3.0",
"@fastify/cors": "8.2.1",
"@fastify/jwt": "6.7.0",
"@fastify/static": "6.9.0",
"@prisma/client": "4.11.0",
"@sentry/node": "7.46.0",
"agenda": "5.0.0",
"axios": "1.3.4",
"bcryptjs": "2.4.3",
"dayjs": "1.11.7",
"dotenv": "16.0.3",
"fastify": "4.14.1",
"fastify-socket.io": "4.0.0",
"handlebars": "4.7.7",
"mongodb": "5.5.0",
"nodemailer": "6.9.1",
"socket.io": "4.6.1",
"socket.io-client": "4.6.1",
"zod": "3.21.4"
}
}