-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.86 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
{
"name": "efash",
"version": "0.0.1",
"description": "Fashion store",
"main": "index.js",
"scripts": {
"start": "ts-node -r tsconfig-paths/register ./src/index.ts",
"start-production": "node ./dist/src/index.js",
"start-watch": "nodemon",
"build": "tsc && tsc-alias",
"test": "echo \"Error: no test specified\" && exit 1"
},
"nodemonConfig": {
"exec": "ts-node -r tsconfig-paths/register ./src/index.ts",
"watch": "./src/*",
"ext": "ts"
},
"_moduleAliases": {
"@type": "dist/types",
"@server": "dist/server",
"@api": "dist/server/api",
"@": "dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mahmoud-Khaled-FS/efash.git"
},
"keywords": [
"fashion",
"store",
"ecommerce"
],
"author": "Mahmoud Khaled",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Mahmoud-Khaled-FS/efash/issues"
},
"homepage": "https://github.com/Mahmoud-Khaled-FS/efash#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/busboy": "^1.5.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.3.1",
"@types/nodemailer": "^6.4.10",
"@types/socket.io": "^3.0.2",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.4",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
},
"dependencies": {
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"busboy": "^1.6.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"firebase-admin": "^11.11.0",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.3.1",
"nodemailer": "^6.9.5",
"socket.io": "^4.7.2",
"stripe": "^12.16.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "^3.11.0"
}
}