generated from krissh-the-dev/babel-express-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
{
"name": "bonafide-gen-api",
"version": "0.0.1",
"description": "This is the backend for bonafide-generator",
"main": "build/server.js",
"module": "src/server.js",
"scripts": {
"build": "babel src --out-dir build",
"dev": "nodemon --exec babel-node src/server.js",
"start": "node build/server.js",
"format": "prettier --write \"**/*.{js,mjs}\"",
"format:check": "prettier -c \"**/*.{js,mjs}\"",
"lint": "eslint \"src/**/*.{js,mjs}\"",
"lint:fix": "npm run lint -- --fix",
"test": "jest --watchAll --verbose --detectOpenHandles"
},
"keywords": [],
"author": "PranavGPR",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@hapi/joi": "^17.1.1",
"babel-plugin-module-resolver": "^4.1.0",
"bcrypt": "^5.0.1",
"chalk": "^4.1.0",
"config": "^3.3.6",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^5.2.6",
"helmet": "^4.4.1",
"http-status-codes": "^2.1.4",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.5",
"morgan": "^1.10.0",
"nodemailer": "^6.6.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/node": "^7.13.12",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@types/jest": "^26.0.22",
"eslint": "^7.22.0",
"eslint-plugin-jest": "^24.3.5",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
}
}