-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
115 lines (115 loc) · 3.27 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
109
110
111
112
113
114
115
{
"$schema": "./node_modules/@types/json-schema/package.json",
"name": "eagles-ec-be",
"version": "1.0.0",
"description": "A platform providing a marketplace for buyers and sellers to meet",
"main": "index.ts",
"scripts": {
"pre-commit": "prettier . --write && eslint .",
"lint": "eslint .",
"dev": "nodemon index.ts",
"build": "tsc",
"migrate": "npx sequelize-cli db:migrate",
"migrate:test": "npx sequelize-cli db:migrate --env test",
"seed": "npx sequelize-cli db:seed:all",
"undo:migrate": "npx sequelize-cli db:migrate:undo:all",
"lint:fix": "npx eslint --fix .",
"test": "cross-env NODE_ENV=test npm run migrate && jest --detectOpenHandles --coverage",
"prepare": "husky",
"prettier": "prettier . --write"
},
"lint-staged": {
".ts": [
"npm run lint:fix"
],
"**/*": "prettier --write"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged && npm run test"
}
},
"author": "atlp",
"license": "MIT",
"devDependencies": {
"@babel/helper-compilation-targets": "^7.23.6",
"@eslint/js": "^9.1.1",
"@types/aws-sdk": "^2.7.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.7",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.14",
"@types/passport": "^1.0.16",
"@types/passport-google-oauth20": "^2.0.14",
"@types/stripe": "^8.0.417",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"globals": "^15.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"pre-commit": "^1.2.2",
"prettier": "^3.2.5",
"sequelize-cli": "^6.6.2",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0"
},
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/socket.io": "^3.0.2",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.2.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"cryptr": "^6.3.0",
"dotenv": "^16.4.5",
"email-validator": "^2.0.4",
"events": "^3.3.0",
"express": "^4.19.2",
"express-session": "^1.18.0",
"husky": "^9.0.11",
"ioredis": "^5.4.1",
"jest-mock": "^29.7.0",
"joi": "^17.13.0",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.2.2",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.13",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"path": "^0.12.7",
"pg": "^8.11.5",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.2",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"stripe": "^15.7.0",
"swagger-ui-express": "^5.0.0"
}
}