-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "graduate_backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon dist/app.js",
"tsc": "tsc",
"build": "webpack",
"lint:copy": "eslint \"**/*.ts\"",
"lint": "eslint --ext .js,.ts src --color",
"format": "prettier --write src/**/*.ts",
"lint-fix": "npm run lint -- --fix",
"prettier": "prettier --config .prettierrc --write './**/*.ts'",
"prettier:ci": "prettier --config .prettierrc --check './**/*.ts'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Dmitry Shibanov",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-validator": "^6.3.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"nodemailer": "^6.4.8",
"nodemailer-sendgrid-transport": "^0.2.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.3",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.29",
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.2",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.3.5",
"@types/multer": "^1.3.10",
"@types/node": "^13.1.8",
"@types/socket.io": "^2.1.8",
"@types/nodemailer": "^6.4.0",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"nodemon": "^2.0.2",
"prettier": "^2.0.5",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}