-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "seneca_bett",
"version": "1.0.0",
"description": "Seneca backend technical task, Node.js, TypeScript\r https://drive.google.com/file/d/1XReXrU4PJSRXEA9mRUf8kHmT1YMPCtLj/view?usp=sharing",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"prod": "ts-node --transpile-only src/app.ts",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^22.13.4",
"bcryptjs": "^3.0.2",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"jest-mock-extended": "^4.0.0-beta1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.6",
"typeorm": "^0.3.20"
}
}