-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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
{
"name": "csgo-skinfo-marketplace",
"version": "2.0.0",
"description": "CSGO Skin marketplace with Steam integration",
"main": "app.js",
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"build": "webpack --mode production",
"test": "jest"
},
"dependencies": {
"express": "^4.18.2",
"express-session": "^1.17.3",
"passport": "^0.6.0",
"passport-steam": "^1.0.17",
"mongoose": "^7.5.0",
"stripe": "^13.6.0",
"steam-tradeoffer-manager": "^2.10.8",
"steam-user": "^4.28.6",
"steam-community": "^3.45.1",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"cors": "^2.8.5",
"helmet": "^7.0.0",
"express-rate-limit": "^6.10.0",
"dotenv": "^16.3.1",
"multer": "^1.4.5-lts.1",
"socket.io": "^4.7.2",
"redis": "^4.6.8",
"winston": "^3.10.0",
"joi": "^17.9.2",
"axios": "^1.5.0"
},
"devDependencies": {
"nodemon": "^3.0.1",
"jest": "^29.6.4",
"supertest": "^6.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}