-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "rest-api-boilerplate",
"version": "1.2.0",
"description": "A framework like boilerplate on top of express.js, socketio, mongodb",
"main": "dist/index.js",
"repository": "[email protected]:dreygur/rest-api-boilerplate.git",
"author": "Rakibul Yeasin <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "babel src -d dist && node-git-info",
"compile": "node build.js",
"start": "node dist/index.js",
"dev": "nodemon --watch src --exec babel-node src/index.js",
"lint": "eslint src --ext js"
},
"dependencies": {
"@orama/orama": "1.0.0",
"@orama/plugin-data-persistence": "1.0.0",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"core-js": ">=3.33.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-actuator": "^1.8.4",
"express-form-data": "^2.0.19",
"express-rate-limit": "^6.7.0",
"jsonwebtoken": "^9.0.0",
"moment": ">=2.29.2",
"mongoose": "^6.8.4",
"mongoose-paginate-v2": "^1.7.1",
"morgan": "^1.10.0",
"nodemailer": "^6.9.1",
"peer": "^1.0.0",
"socket.io": "^4.6.1",
"spdy": "^4.0.2",
"web-push": "^3.5.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"babel-preset-env": "^1.7.0",
"env-cmd": "^10.1.0",
"esbuild": "^0.19.5",
"eslint": "^8.32.0",
"jest": "^29.5.0",
"node-git-info": "^1.1.0",
"nodemon": "^2.0.20",
"superagent": "^8.0.9",
"supertest": "^6.3.3"
},
"engines": {
"node": "^18.0.0"
}
}