-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.08 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
{
"name": "e_commerce_0",
"version": "1.0.0",
"main": "index.js",
"author": "PreciousIfeaka <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"start:dev": "ts-node-dev --respawn --transpile-only ./src/index",
"start": "ts-node --transpile-only ./src/index.ts",
"build": "tsc",
"reset-db": "typeorm-ts-node-commonjs schema:drop -d src/data-source && typeorm-ts-node-commonjs schema:sync -d src/data-source",
"lint": "eslint .",
"commitlint": "commitlint --edit",
"prepare": "husky",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js"
},
"dependencies": {
"@commitlint/cli": "^19.4.1",
"@types/bcrypt": "^5.0.2",
"@types/config": "^3.3.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/nodemailer": "^6.4.15",
"@types/speakeasy": "^2.0.10",
"@types/swagger-ui-express": "^4.1.6",
"bcrypt": "^5.1.1",
"class-validator": "^0.14.1",
"config": "^3.3.12",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fs": "^0.0.1-security",
"husky": "^9.1.5",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.15",
"pg": "^8.12.0",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"reflect-metadata": "^0.2.2",
"speakeasy": "^2.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"typeorm": "^0.3.20",
"typescript": "^5.5.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.4.1",
"@eslint/js": "^9.10.0",
"@types/multer": "^1.4.12",
"@types/node": "^22.5.4",
"@types/swagger-jsdoc": "^6.0.4",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-node-dev": "^2.0.0",
"typescript-eslint": "^8.4.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}