-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 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
45
46
47
48
49
50
{
"name": "api-tasks",
"version": "0.1.1",
"description": "gerenciador de tarefas (Tasks Organized)",
"main": "index.js",
"engines": {
"node": "20.x"
},
"scripts": {
"build": "swc src -d dist",
"start": "node dist/server.js",
"start:dev": "tsx watch src/server.ts",
"test": "jest run --coverage --silent=true --passWithNoTests",
"test:watch": "jest",
"lint": "eslint src",
"migrate": "prisma migrate deploy",
"migrate:new": "primsa migrate dev",
"migrate:denerate": "primsa migrate denerate",
"migrate:reset": "primsa migrate reset"
},
"keywords": [],
"author": "Tiago Mota",
"license": "ISC",
"devDependencies": {
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.99",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.20",
"@types/jest": "^29.5.11",
"@types/node": "^20.8.10",
"@types/uuid": "^9.0.7",
"babel-jest": "^29.7.0",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"prisma": "^5.5.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@faker-js/faker": "^8.2.0",
"@prisma/client": "^5.5.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"uuid": "^9.0.1",
"zod": "^3.22.4"
}
}