-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.5 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
{
"name": "FIUBER-Trips",
"version": "0.1.0",
"description": "Server side of FIUBER app",
"main": "src/index.ts",
"repository": "[email protected]:TallerDeProgramacion2-2022-2c-Grupo7/FIUBER-Trips.git",
"author": "aleacevedo <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"axios": "^1.2.1",
"coingecko-api": "^1.0.10",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"firebase-admin": "^11.0.1",
"hot-shots": "^9.3.0",
"loadsh": "^0.0.4",
"lodash": "^4.17.21",
"mongoose": "^6.6.5"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@shelf/jest-mongodb": "^4.1.4",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"concurrently": "^7.4.0",
"eslint": "^8.23.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^29.0.3",
"nodemon": "^2.0.20",
"prettier": "^1.19.1",
"supertest": "^6.2.4",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"scripts": {
"build": "tsc -b tsconfig.json",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "jest",
"lint": "eslint --ext .ts src/"
}
}