-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.22 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.22 KB
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
{
"name": "sixth-ts-ex-class-template",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "tsc && npx eslint && npx prettier . --write",
"lint-autofix": "tsc && npx eslint --fix && npx prettier . --write",
"dev": "tsc && node --env-file=.env.dev dist/index.js",
"qa": "tsc && node --env-file=.env.qa dist/index.js",
"prod": "tsc && node --env-file=.env.prod dist/index.js",
"build": "tsc",
"start": "node --env-file=.env dist/index.js",
"prepare": "husky install",
"db-dev:create": "node --env-file=.env.dev ./node_modules/typeorm-extension/bin/cli.cjs db:create",
"db-qa:create": "node --env-file=.env.qa ./node_modules/typeorm-extension/bin/cli.cjs db:create",
"db-prod:create": "node --env-file=.env.prod ./node_modules/typeorm-extension/bin/cli.cjs db:create",
"db-dev:drop": "node --env-file=.env.dev ./node_modules/typeorm-extension/bin/cli.cjs db:drop",
"db-qa:drop": "node --env-file=.env.qa ./node_modules/typeorm-extension/bin/cli.cjs db:drop",
"db-prod:drop": "node --env-file=.env.prod ./node_modules/typeorm-extension/bin/cli.cjs db:drop"
},
"scriptComment": {
"lint": "Run eslint and prettier",
"lint-autofix": "Run eslint and prettier with --fix",
"dev": "Run the project in development mode on local machine",
"qa": "Run the project in QA mode on local machine",
"prod": "Run the project in production mode on local machine",
"build": "Compile the project (use on docker)",
"start": "Run the compiled project (use on docker)",
"prepare": "Install husky",
"db-dev:create": "Create the database in development mode",
"db-qa:create": "Create the database in QA mode",
"db-prod:create": "Create the database in production mode",
"db-dev:drop": "Drop the database in development mode",
"db-qa:drop": "Drop the database in QA mode",
"db-prod:drop": "Drop the database in production mode"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^5.1.1",
"bufferbus": "^1.0.1",
"busboy": "^1.6.0",
"cors": "^2.8.5",
"express": "^4.21.2",
"firebase": "^11.2.0",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"npm": "^10.9.2",
"pg": "^8.13.1",
"reflect-metadata": "^0.2.2",
"sixth-ts-ex-class-template": "file:",
"tsyringe": "^4.8.0",
"typeorm": "^0.3.20",
"uuid": "^11.0.5"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@types/bcrypt": "^5.0.2",
"@types/busboy": "^1.5.4",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.8",
"@types/morgan": "^1.9.9",
"eslint": "^9.17.0",
"husky": "^8.0.0",
"prettier": "3.4.2",
"typeorm-extension": "^3.6.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
}