-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.68 KB
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
{
"name": "to-do-list-api",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/main.ts",
"dev:modular": "tsx watch src/main-v2.ts",
"build": "tsc --project tsconfig.json && tsc-alias",
"start": "node dist/main.js",
"test": "cross-env NODE_ENV=test vitest run",
"test:app": "cross-env NODE_ENV=test vitest run tests/app",
"test:integration": "cross-env NODE_ENV=test vitest run tests/integration --fileParallelism=false",
"migration:create": "cross-env NODE_ENV=development node --loader ts-node/esm ./node_modules/typeorm/cli.js migration:create",
"migration:run": "cross-env NODE_ENV=development node --loader ts-node/esm ./node_modules/typeorm/cli.js migration:run -d src/infra/database/typeorm/data-source.ts",
"migration:revert": "cross-env NODE_ENV=development node --loader ts-node/esm ./node_modules/typeorm/cli.js migration:revert -d src/infra/database/typeorm/data-source.ts"
},
"author": "Lauro",
"license": "ISC",
"description": "API de gerenciamento de tarefas com TypeScript, Fastify, TypeORM, JWT, Zod e arquitetura modular.",
"devDependencies": {
"@biomejs/biome": "^2.3.0",
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.9.1",
"cross-env": "^10.1.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"dependencies": {
"@fastify/cors": "^11.1.0",
"bcrypt": "^6.0.0",
"dotenv": "^17.2.3",
"fastify": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.27",
"zod": "^4.1.12"
}
}