-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"name": "metallica-api",
"version": "1.0.0",
"description": "Free API for Metallica fans and developers",
"repository": "https://github.com/Filipe-Bacof/metallica-api.git",
"keywords": [
"metallica"
],
"author": "Filipe Bacof",
"license": "MIT",
"main": "dist/app.js",
"scripts": {
"dev": "tsx watch src/app.ts",
"start": "node dist/app.js",
"postinstall": "prisma generate",
"build": "rimraf dist && tsc",
"ts.check": "tsc --project tsconfig.json",
"add-build": "git add dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": [
"ts.check",
"build",
"add-build"
],
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.16.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"pg": "^8.12.0"
},
"devDependencies": {
"@rocketseat/eslint-config": "^1.2.0",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/node": "^20.14.9",
"eslint": "^8.44.0",
"nodemon": "^3.1.4",
"pre-commit": "^1.2.2",
"prisma": "^5.16.1",
"prisma-erd-generator": "^1.11.2",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"tsx": "^4.15.7",
"typescript": "^5.5.2"
}
}