-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "dzen-api",
"version": "1.0.0",
"description": "API for the comments app, using TypeScript, Express, PostgreSQL, Prisma ORM and more...",
"main": "src/app.ts",
"scripts": {
"build": "prisma generate && tsc",
"start": "node dist/app.js",
"dev": "nodemon --exec ts-node src/app.ts",
"prod": "npm run build && npm run start",
"container": "docker build -t dzen-api . && docker run -it --rm -p 9090:9090 dzen-api",
"format": "prettier --write .",
"lint": "eslint .",
"fix-style": "npm run format && npm run lint -- --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andriibezkorovainyi/dzen-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andriibezkorovainyi/dzen-api/issues"
},
"homepage": "https://github.com/andriibezkorovainyi/dzen-api#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.352.0",
"@prisma/client": "^4.15.0",
"aws-sdk": "^2.1398.0",
"axios": "^1.4.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.1.1",
"express": "^4.18.2",
"prisma": "^4.15.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/mime": "^3.0.1",
"@types/node": "^20.2.5",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"concurrently": "^8.0.1",
"eslint": "^8.41.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"prettier": "2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"lint-staged": {
"*": "npm run lint"
}
}