-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "pick-uppointbackend",
"version": "1.0.0",
"requires": true,
"main": "server.js",
"scripts": {
"build": "npx tsc",
"start": "node ./build/src/server.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q build/src/server.js\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoffeSiberian/Pick-UpPointBackend.git"
},
"author": "Fernando Garrido",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/CoffeSiberian/Pick-UpPointBackend/issues"
},
"homepage": "https://github.com/CoffeSiberian/Pick-UpPointBackend#readme",
"dependencies": {
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"formidable": "^3.5.2",
"joi": "^17.13.3",
"jose": "^5.9.6",
"mariadb": "^3.4.0",
"sequelize": "^6.37.5",
"sequelize-typescript": "^2.1.6",
"uuid": "^11.0.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/formidable": "^3.4.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"concurrently": "^9.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}