-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.2 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
{
"name": "your-app-name",
"author": "Mudassir Iqbal",
"version": "1.0.0",
"description": "Rest API",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start-prod": " pm2 startOrRestart ecosystem.config.js --env production",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/"
},
"bugs": {
"url": "https://github.com/"
},
"homepage": "https://github.com/",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.881.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"husky": "6.0.0",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.4.17",
"pg": "^8.5.1",
"sequelize": "^6.5.0",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"lint-staged": "^10.5.3",
"prettier": "^2.2.1"
},
"lint-staged": {
"*.+(js|jsx|json|jsonc|html|css|scss|md)": [
"prettier --write"
]
},
"prettier": {
"printWidth": 100,
"bracketSpacing": true,
"trailingComma": "es5",
"arrowParens": "avoid",
"packageManager": "yarn",
"singleQuote": true,
"useTabs": true
}
}