-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "node",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"engines": {
"node": "16.17.0"
},
"keywords": [
"heroku"
],
"scripts": {
"build": "rimraf dist && npx tsc",
"lint:check": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format:write": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"dev": "nodemon --watch 'src/**/*.ts' --ext 'ts,json' --exec 'ts-node' --files src/app.ts",
"start": "npm run build && node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"author": "santhosh",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"dotenv": "^16.0.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"@sendgrid/mail": "^7.7.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.18.1",
"husky": "^8.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.3",
"winston": "^3.8.2"
}
}