-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.65 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
{
"name": "find-a-friend-app-desafio-rocketseat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"test:create-prisma-environment": "npm link ./prisma/vitest-environment-prisma",
"test:install-prisma-environment": "npm link vitest-environment-prisma",
"ci:gen-jwt-keys": "tsx ./utils/generate-async-crypto-keys.ts",
"pretest:e2e": "run-s test:create-prisma-environment test:install-prisma-environment",
"test:e2e": "vitest --config ./vite.config.e2e.ts",
"test": "vitest",
"dev:gen-env": "tsx ./utils/generate-env-file-with-env-example.ts",
"dev:compose": "docker compose up -d",
"dev:migrate": "prisma migrate dev",
"dev": "tsx watch src/infra/server.ts",
"dev:new-setup": "npm i && run-s dev:compose dev:gen-env ci:gen-jwt-keys dev:migrate dev",
"db": "prisma studio",
"build": "tsup src --out-dir ./build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@fastify/jwt": "^8.0.1",
"@prisma/client": "^5.15.0",
"@rocketseat/eslint-config": "^2.2.2",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"fastify": "^4.27.0",
"remask": "^1.2.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@fakerjs/faker": "^3.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.14.2",
"@types/supertest": "^6.0.2",
"eslint": "^8.57.0",
"eslint-plugin-vitest-globals": "^1.5.0",
"npm-run-all": "4.1.5",
"prisma": "^5.15.0",
"supertest": "^7.0.0",
"tsx": "^4.15.1",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}