-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1020 Bytes
/
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
{
"name": "future-careers_back-end",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "nodemon --watch src/**/*.ts --exec ts-node src/index.ts",
"build": "tsc",
"deploy": "tsc && gcloud app deploy --quiet"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.1.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"generate-password": "^1.5.1",
"mongodb": "^3.5.7",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@types/swagger-ui-express": "^4.1.2",
"@types/express": "^4.17.6",
"@types/dotenv": "^8.2.0",
"@types/node": "^14.0.14",
"husky": "^4.2.5",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"engines": {
"node": "12.x.x"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}