-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.78 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
{
"name": "team-emma-25-e-comm-backend",
"version": "1.0.0",
"main": "app.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/atlp-rwanda/team-emma-25-e-comm-backend.git"
},
"author": "TresorRw <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/atlp-rwanda/team-emma-25-e-comm-backend/issues"
},
"homepage": "https://github.com/atlp-rwanda/team-emma-25-e-comm-backend#readme",
"scripts": {
"build": "rimraf ./dist && tsc",
"start": "node ./dist/app.js",
"lint": "npx eslint ./src",
"lint-fix": "npx eslint --fix ./src",
"dev": "tsnd --respawn ./src/app.ts",
"test": "jest --detect-openHandles --config ./src/jest.config.ts --coverage --forceExit",
"test:w": "jest --config ./src/jest.config.ts --watch"
},
"keywords": [
"typescript",
"postgresql",
"atlp",
"e-commerce",
"express",
"dotenv"
],
"description": "e-Commerce backend API",
"dependencies": {
"@joi/date": "^2.1.0",
"@types/babel__core": "^7.20.0",
"bcrypt": "^5.1.0",
"cloudinary": "^1.35.0",
"connect-redis": "^6.1.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"country-data-list": "^1.2.3",
"crypto": "^1.0.1",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"eslint-config-prettier": "^8.6.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"ioredis": "^5.3.1",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"nock": "^13.3.0",
"nodemailer": "^6.9.1",
"passport": "^0.6.0",
"passport-google-oauth2": "^0.2.0",
"pg": "^8.9.0",
"pg-hstore": "^2.3.4",
"redis": "^4.6.4",
"redis-url": "^1.2.1",
"sequelize": "^6.28.0",
"short-unique-id": "^4.4.4",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"stripe": "^11.14.0",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.0",
"twilio": "^4.7.2",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.16",
"@types/express-session": "^1.17.6",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.7",
"@types/passport": "^1.0.12",
"@types/stripe": "^8.0.417",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"coveralls": "^3.1.1",
"eslint": "^8.33.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.1",
"nodemon": "^2.0.20",
"pg": "^8.9.0",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
}
}