-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·50 lines (50 loc) · 1.28 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
{
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"email-validator": "^2.0.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mercadopago": "^2.0.15",
"mongoose": "^7.5.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0"
},
"name": "challenge",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.ts",
"scripts": {
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix"
}
},
"keywords": [],
"author": "",
"license": "GPL",
"description": "",
"devDependencies": {
"@types/bcryptjs": "^2.4.4",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.8",
"@types/morgan": "^1.9.5",
"@types/node": "^20.5.9",
"eslint-plugin-sort-keys-plus": "^1.4.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}