-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.34 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
{
"name": "api-template",
"version": "0.2.0",
"description": "Nodejs express based API boilerplate",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"pretty": "prettier --write ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akshay-nm/api-template.git"
},
"author": "Akshay Kumar",
"license": "MIT",
"bugs": {
"url": "https://github.com/akshay-nm/api-template/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint",
"pretty-quick — staged"
]
},
"homepage": "https://github.com/akshay-nm/api-template#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-unless": "^0.5.0",
"helmet": "^4.1.1",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.11",
"morgan": "^1.10.0",
"swagger-jsdoc": "^5.0.0",
"swagger-ui-express": "^4.1.4",
"ulid": "^2.3.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.16.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
}
}