-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "promas-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "node dist/main.js",
"start:dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/main.js\"",
"prepare": "husky install",
"docker:up": "sudo docker compose up -d",
"docker:down": "sudo docker compose down"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1476.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@types/express": "^4.17.19",
"@types/node": "^20.8.6",
"concurrently": "^8.2.1",
"husky": "^8.0.0",
"lint-staged": "^15.0.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}