-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.7 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
{
"name": "task-service",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:felipeoriani/task-service.git",
"author": "Felipe Oriani <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc",
"start": "yarn build && node --env-file=.env .build/src/index.js",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"test": "glob -c \"node --import tsx --no-warnings --test\" \"tests/**/*.{spec,test}.ts\"",
"test:coverage": "glob -c \"c8 node --import tsx --no-warnings --test\" \"tests/**/*.{spec,test}.ts\"",
"type-check": "yarn build --pretty --noEmit",
"prisma:migrate": "yarn prisma migrate dev",
"prisma:reset": "prisma migrate reset --force && yarn prisma:seed",
"prisma:seed": "node --env-file=.env scripts/seed.js",
"docker:build": "docker buildx build --platform linux/amd64 -t tasks-api-nodejs-typescript ."
},
"dependencies": {
"@prisma/client": "^5.12.1",
"apollo-server-express": "^3.13.0",
"express": "^4.19.2",
"graphql": "^16.8.1",
"graphql-scalars": "^1.23.0",
"joi": "^17.12.3",
"jsonwebtoken": "^9.0.2",
"pino": "^8.20.0",
"pino-http": "^9.0.0"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.4",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"c8": "^9.1.0",
"eslint": "^8.56.0",
"glob": "^10.3.12",
"prisma": "^5.12.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.2",
"typescript": "^5.4.4"
}
}