-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 795 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 795 Bytes
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
{
"name": "alaska-inc-back",
"version": "0.0.1",
"description": "Сервер для проекта учебной площадки",
"main": "app.js",
"scripts": {
"build": "npx tsc",
"start": "node ./src/app.js",
"dev": "npx ts-node ./src/app.ts",
"lint": "npx eslint ."
},
"author": "foult080",
"license": "UNLICENSED",
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.14.2",
"eslint": "^8.57.0",
"globals": "^15.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-validator": "^7.1.0",
"jsonwebtoken": "^9.0.2"
}
}