-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.65 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
{
"name": "untitled",
"version": "0.0.0",
"private": true,
"scripts": {
"tsc": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./src/index.ts",
"prod": "npm run build && npm run start",
"start": "node ./dist/index.js",
"compile": "rimraf dist && tsc",
"build": "npm run compile",
"tslint": "tslint --project tsconfig.json"
},
"dependencies": {
"@sendgrid/mail": "^6.5.1",
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.3.5",
"@types/lodash": "^4.14.149",
"@types/nodemailer": "^6.4.0",
"@types/rimraf": "^2.0.3",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"date-fns": "^1.30.1",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"eslint-config-airbnb": "^18.1.0",
"express": "~4.16.0",
"express-engine": "^1.0.1",
"express-myconnection": "^1.0.4",
"flash": "^1.1.0",
"http-errors": "~1.6.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"mysql": "^2.16.0",
"mysql2": "^2.0.2",
"nodemailer": "^6.4.2",
"pug": "^2.0.4",
"recharts": "^1.5.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.1",
"twilio": "^3.25.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^2.0.2",
"ts-node": "^8.5.4",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.3"
}
}