-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.41 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "learning-nodejs-express-api",
"version": "1.0.0",
"description": "Node JS API with Express template",
"main": "app.js",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bootstrap": "^3.4.1",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"chalk": "^3.0.0",
"child_process": "^1.0.2",
"colors": "^1.4.0",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"cryptr": "^6.0.2",
"deep-diff": "^1.0.2",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"exceljs": "^4.2.1",
"express": "^4.17.1",
"express-fileupload": "^1.1.7-alpha.3",
"express-jwt": "^5.3.1",
"fs": "^0.0.1-security",
"handlebars": "^4.7.6",
"jquery": "^3.4.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.12",
"lodash": "^4.17.15",
"md5": "^2.3.0",
"method-override": "^3.0.0",
"mocha": "^7.1.0",
"moment": "^2.29.1",
"mongoose": "^5.9.2",
"morgan": "^1.9.1",
"mysql": "^2.18.1",
"node-cron": "^2.0.3",
"nodemon": "^2.0.2",
"path": "^0.12.7",
"prettier": "^1.19.1",
"should": "^13.2.3",
"sinon": "^9.0.0",
"supertest": "^4.0.2",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-find-rules": "^3.4.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"expect": "^25.1.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4"
},
"scripts": {
"start": "nodemon app.js",
"lint": "eslint .",
"test": "mocha test/index.js --timeout 5000 --exit"
},
"keywords": [
"nodejs",
"restful",
"API",
"expressJS"
],
"author": "ChauNNT",
"license": "MIT",
"bugs": {
"url": "https://github.com/chaunnt/TemplateNodeJS_ExpressJS_SQL"
},
"homepage": "https://github.com/chaunnt/TemplateNodeJS_ExpressJS_SQL",
"nodemonConfig": {
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"delay": "2500",
"ext": "js,json"
},
"engines": {
"node": ">=10.15.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true
}
}