This repository has been archived by the owner on Mar 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.17 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
69
70
71
72
73
74
75
{
"name": "backend",
"version": "0.0.0",
"private": true,
"scripts": {
"format": "prettier --write \"{src,__}/**/*.ts\" --find-config-path",
"build": "tsc && cp -r backend/emails dist/emails",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "nodemon -i \"**/*.test.ts\" -i \"**/*.spec.ts\" -i \"node_modules\" -w backend -e ts -x \"npm run server\"",
"deploy": "sh build.sh && gcloud app deploy -q",
"server": "node --inspect -r ts-node/register backend/index.ts"
},
"dependencies": {
"@google-cloud/storage": "^1.7.0",
"@sendgrid/mail": "^6.3.1",
"axios": "^0.18.0",
"bcrypt": "^2.0.1",
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"crypto-js": "^3.1.9-1",
"debug": "~2.6.9",
"dotenv": "^5.0.1",
"express": "~4.16.0",
"handlebars": "^4.0.11",
"helmet": "^3.13.0",
"jsonwebtoken": "^8.2.1",
"mongodb": "^3.1.3",
"mongoose": "^5.2.8",
"morgan": "~1.9.0",
"multer": "^1.3.1",
"nodemailer": "^4.6.7",
"nodemon": "^1.17.3",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"ts-node": "^7.0.0",
"typescript": "^2.8.3",
"validator": "^10.2.0",
"yes-https": "^0.0.4"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^2.0.0",
"@types/body-parser": "^1.17.0",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.4",
"@types/crypto-js": "^3.1.39",
"@types/express": "^4.11.1",
"@types/express-session": "^1.15.8",
"@types/google-cloud__storage": "^1.7.0",
"@types/handlebars": "^4.0.39",
"@types/helmet": "^0.0.39",
"@types/http-errors": "^1.6.1",
"@types/jsonwebtoken": "^7.2.7",
"@types/mailgun-js": "^0.16.0",
"@types/mongodb": "^3.1.4",
"@types/mongoose": "^5.2.5",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.7",
"@types/node": "^10.7.1",
"@types/nodemailer": "^4.6.2",
"@types/nodemailer-mailgun-transport": "^1.3.3",
"@types/passport": "^0.4.6",
"@types/passport-jwt": "^3.0.1",
"@types/sendgrid": "^4.3.0",
"@types/validator": "^9.4.1",
"concurrently": "^3.5.1",
"eslint": "^5.3.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-typescript": "^0.12.0",
"prettier": "^1.12.1",
"prettier-eslint": "^8.8.2",
"typescript-eslint-parser": "^18.0.0"
}
}