forked from yigitocak/Pixel-Punch-Out-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"testenv": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx\n",
"test": "jest --runInBand --verbose --detectOpenHandles",
"db:migrate": "npx knex migrate:latest"
},
"keywords": [],
"author": "Yigit Ocak",
"license": "",
"dependencies": {
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"chai": "^5.1.1",
"cloudinary": "^1.41.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"fs": "^0.0.1-security",
"google-auth-library": "^9.10.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"mocha": "^10.4.0",
"moment-timezone": "^0.5.45",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"mysql2": "^3.9.7",
"nodemailer": "^6.9.13",
"nodemon": "^3.1.0",
"sqlite3": "^5.1.7",
"supertest": "^7.0.0"
},
"type": "module",
"devDependencies": {
"prettier": "3.2.5"
}
}