-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 KB
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
{
"name": "starwars",
"version": "1.0.0",
"description": "Desarrollo de API StarWars para prueba técnica en Kairox",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest --verbose --silent",
"test:watch": "npm run test -- --watch",
"dev": "cross-env NODE_ENV=dev nodemon dist/build/index.js",
"start": "cross-env NODE_ENV=production node dist/build/index.js",
"build": "tsc -w"
},
"author": "Federico Vega",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"axios": "^1.6.7",
"bcrypt": "^5.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"reflect-metadata": "^0.2.1",
"sqlite3": "^5.1.7",
"swagger-ui-express": "^5.0.0",
"typeorm": "^0.3.20"
}
}