-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.84 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
55
56
57
58
59
60
{
"name": "players-nation-backend",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"test": "jest --watchAll --coverage",
"prepare": "husky install",
"update:git": "git checkout main && git pull && git fetch -p && git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -D && git branch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isdi-coders-2023/Joaquin-Godoy-Final-Project-back-202301-mal.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/isdi-coders-2023/Joaquin-Godoy-Final-Project-back-202301-mal/issues"
},
"homepage": "https://github.com/isdi-coders-2023/Joaquin-Godoy-Final-Project-back-202301-mal#readme",
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.56.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@supabase/supabase-js": "^2.11.0",
"bunyan": "^1.8.15",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validation": "^4.1.0",
"jsonwebtoken": "^9.0.0",
"mongodb-memory-server": "^8.12.0",
"mongoose": "^7.0.1",
"multer": "^1.4.5-lts.1",
"supertest": "^6.3.3"
}
}