-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "caglargelinlik.server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"format": "prettier --write \"src/**/*.js\"",
"start:dev": "cross-env NODE_ENV=development nodemon server.js",
"start:prod": "cross-env NODE_ENV=production node server.js",
"test": "mocha src/test/**/*.js"
},
"author": "resatyavcin",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"bson": "^6.2.0",
"chai": "^4.3.10",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-validation": "^4.1.0",
"express-winston": "^4.2.0",
"http-status": "^1.7.3",
"jsonwebtoken": "^9.0.2",
"keygrip": "^1.1.0",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"moment-range": "^4.0.2",
"mongoose": "^8.0.1",
"qrcode": "^1.5.3",
"speakeasy": "^2.0.0",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"nodemon": "^3.0.1",
"prettier": "^3.1.0"
}
}