-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 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
43
44
45
46
47
{
"name": "example-nodejs-server-express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles",
"start:web:dev": "nodemon web.js",
"start:web:api": "nodemon server.js",
"start": "nodemon api.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniel-alts/example-nodejs-server-express.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/daniel-alts/example-nodejs-server-express/issues"
},
"homepage": "https://github.com/daniel-alts/example-nodejs-server-express#readme",
"devDependencies": {
"nodemon": "^3.0.1"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cloudinary": "^1.41.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-rate-limit": "^7.2.0",
"jest": "^29.7.0",
"joi": "^17.10.1",
"jsonwebtoken": "^9.0.2",
"mongodb-memory-server": "^8.15.1",
"mongoose": "^7.5.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"redis": "^4.6.14",
"shortid": "^2.2.16",
"supertest": "^6.3.3",
"validatorjs": "^3.22.1",
"winston": "^3.13.0"
}
}