-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "servidor",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"check": "tsc --noEmit && echo ✔ Ok",
"build": "tsc",
"dev": "tsx --env-file .env ./src/index.ts",
"dev:dev": "tsx --env-file .env.dev ./src/index.ts",
"watch": "tsx --watch --env-file .env ./src/index.ts",
"watch:dev": "tsx --watch --env-file .env.dev ./src/index.ts",
"start": "node --env-file .env ./dist/index.js",
"start:dev": "node --env-file .env.dev ./dist/index.js",
"test": "jest --verbose"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.0",
"pg": "^8.11.5",
"tsx": "^4.19.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.6",
"@types/pg": "^8.11.6",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}