-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.43 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.43 KB
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
{
"name": "nodejs_mesto_backend_2024-04-09",
"version": "1.0.0",
"description": "Проектная_работа_1 на курсе backend nodejs developer от яндекс парктикума",
"main": "dist/app.js",
"scripts": {
"pm2": "NODE_ENV=production pm2 start src/app.ts --watch -i max",
"lint": "npx eslint src/**/*.ts",
"build": "tsc",
"dev": "ts-node-dev src/app.ts",
"start": "ts-node src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Pavel Karasev",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.11",
"@types/node": "^18.19.31",
"@types/validator": "^13.11.9",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"bcrypt": "^5.1.1",
"celebrate": "^15.0.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-winston": "^4.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^6.12.7",
"multer": "^1.4.5-lts.1",
"validator": "^13.11.0",
"winston": "^3.13.0"
}
}