-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "stellar-burgers-backend",
"version": "1.0.0",
"description": "Backend for Stellar Burgers Project",
"main": "dist/app.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"dev": "ts-node-dev src/app.ts",
"start": "ts-node src/app.ts",
"lint": "npx eslint src/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.4.2",
"@types/nodemailer": "^6.4.9",
"@types/validator": "^13.7.17",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/agenda": "^4.1.0",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"agenda": "^5.0.0",
"bcrypt": "^5.1.0",
"celebrate": "^15.0.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-winston": "^4.2.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.3.4",
"nodemailer": "^6.9.4",
"pm2": "^5.3.0",
"uuid": "^9.0.0",
"validator": "^13.9.0",
"winston": "^3.10.0",
"ws": "^8.13.0"
}
}