-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && swc ./src -d dist",
"build:start": "yarn build && yarn start:prod",
"bun:dev": "bun --hot src/server.ts",
"lint": "eslint --ignore-path .eslintignore \"src/**/*.ts\" --fix",
"lint:check": "eslint --ignore-path .eslintignore \"src/**/*.ts\"",
"prepare": "husky install",
"prettier": "prettier --write \"src/**/*.ts\"",
"prettier:check": "prettier --check \"src/**/*.ts\"",
"rebuild:be": "docker compose build server && docker compose rm --stop server && docker compose up -d server",
"start": "yarn build:start",
"start:dev": "ts-node-dev -r tsconfig-paths/register --respawn --pretty --transpile-only --rs src/server.ts",
"start:prod": "node dist/server.js",
"test": "jest --coverage",
"watch": "watchy --no-init-spawn --debounce 1 -w src -- docker compose restart server"
},
"keywords": [
"AmmaJaan",
"eCommerce backend"
],
"author": {
"name": "Shivam Vijaywargi",
"email": "[email protected]",
"url": "https://github.com/shivamvijaywargi"
},
"maintainers": [
{
"name": "Shivam Vijaywargi",
"email": "[email protected]",
"url": "https://github.com/shivamvijaywargi"
}
],
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.33.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"formidable": "^2.1.1",
"fs-extra": "^11.1.0",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.4",
"morgan": "^1.10.0",
"nanoid": "^4.0.1",
"nodemailer": "^6.9.0",
"slugify": "^1.6.5",
"stripe": "^11.13.0",
"winston": "^3.8.2",
"zod": "^3.20.2"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.42",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/formidable": "^2.0.5",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"@types/nodemailer": "^6.4.7",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"husky": "^8.0.0",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"rimraf": "^4.4.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^3.14.2",
"typescript": "^4.9.4",
"watchy": "^0.10.0"
},
"homepage": "https://github.com/shivamvijaywargi/full-stack-eCommerce#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/shivamvijaywargi/full-stack-eCommerce.git"
},
"bugs": {
"url": "https://github.com/shivamvijaywargi/full-stack-eCommerce/issues"
},
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.20.0",
"npm": "please-use-yarn"
},
"volta": {
"node": "18.15.0",
"yarn": "1.22.19"
}
}