-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.18 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
68
{
"name": "starter",
"version": "1.0.0",
"description": "project starter",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"postinstall": "tsc",
"lint": "eslint --ext .ts . --fix",
"format": "npm run prettier && npm run lint ",
"prettier": "prettier --config .prettierrc --ignore-path .gitignore --write './src/**/*.+(js|ts)'",
"jasmine": "jasmine",
"start:dev": "npm run tsc && nodemon --files ./src/app.ts",
"start:prod": "npm run tsc && NODE_ENV=production nodemon ./src/app.js",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salimkarbm/starter.git"
},
"author": "salim imuzai",
"license": "ISC",
"bugs": {
"url": "https://github.com/salimkarbm/starter/issues"
},
"homepage": "https://github.com/salimkarbm/starter#readme",
"dependencies": {
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"cloudinary": "^1.41.0",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"html-to-text": "^9.0.5",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.4.5",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.7",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/html-to-text": "^9.0.4",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.10",
"@types/node": "^17.0.13",
"@types/nodemailer": "^6.4.14",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"engines": {
"node": "^14"
}
}