-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.63 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "project-pokedex-api",
"version": "1.0.0",
"description": "",
"main": "dist/src/server.js",
"type": "module",
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"scripts": {
"start": "node dist/src/server.js",
"ts:start": "ts-node src/server.ts",
"build": "tsc -p tsconfig.json",
"dev": "nodemon -r tsconfig-paths/register src/server.ts",
"prisma:init": "npx prisma init",
"format": "npx prisma format",
"migrate": "npx prisma migrate dev",
"studio": "npx prisma studio",
"seed": "npx prisma db seed",
"ts:config": "npx tsc --init",
"check-updates": "npx npm-check-updates -u",
"eslint": "npm init @eslint/config",
"prepare": "husky install",
"test:unit": "jest",
"test:int": "jest --runInBand --clearCache -i",
"heroku:logs": "heroku logs --tail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcos-asdes/project-pokedex-api.git"
},
"author": "Marcos Antonio",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcos-asdes/project-pokedex-api/issues"
},
"homepage": "https://github.com/marcos-asdes/project-pokedex-api#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.21.4",
"@faker-js/faker": "^7.6.0",
"@jest/globals": "^29.5.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.0.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"express-rate-limit": "^6.7.0",
"git-commit-msg-linter": "^4.9.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "2.8.6",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@prisma/client": "^4.11.0",
"axios": "^1.3.4",
"bcrypt": "^5.1.0",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^6.0.1",
"joi": "^17.8.3",
"jsonwebtoken": "^9.0.0",
"nodemon": "^2.0.21",
"prisma": "^4.11.0"
},
"eslintConfig": {
"extends": [
"prettier"
]
},
"husky": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
],
"*.ts": [
"eslint",
"prettier --write"
]
}
}