-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.78 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
60
61
62
63
64
65
66
67
{
"name": "node-codebase-template",
"version": "1.1.0",
"description": "Just A Codebase for my project",
"main": "./src/bin/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "del /s /q dist && babel -d ./dist ./src",
"start": "node ./dist/bin/app.js",
"dev": "nodemon --exec babel-node ./src/bin/app.js",
"prelint:js": "npm run format:all",
"lint:js": "eslint src/**/*.js",
"format:all": "prettier --write src/**/*.js"
},
"keywords": [
"codebase"
],
"pre-commit": [
"lint:js"
],
"author": "Irfan Jauhari",
"license": "ISC",
"dependencies": {
"babel-eslint": "^10.1.0",
"base64topdf": "^1.1.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.25.0",
"confidence": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint": "^7.17.0",
"excel4node": "^1.7.2",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-rate-limit": "^5.2.6",
"faker": "^5.4.0",
"fs": "0.0.1-security",
"helmet": "^4.4.1",
"http-error": "0.0.6",
"http-status": "^1.5.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.11.9",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"path": "^0.12.7",
"pdfmake": "^0.1.70",
"uuid": "^8.3.2",
"validate.js": "^0.13.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.13.7",
"@babel/preset-env": "^7.12.11",
"@babel/runtime": "^7.12.5",
"eslint-config-prettier": "^3.4.0",
"eslint-plugin-prettier": "^3.0.1",
"nodemon": "^2.0.6",
"pre-commit": "^1.2.2",
"prettier": "^1.15.3"
}
}