-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "fpay-test",
"version": "1.0.0",
"description": "Prueba técnica FPay Amaris",
"main": "index.ts",
"scripts": {
"start": "nodemon --exec ts-node index.ts",
"build": "tsc",
"test": "jest --detectOpenHandles --runInBand --forceExit --config=jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valdebenitoalbornoz/fpay-test.git"
},
"keywords": [
"nodejs",
"typescript"
],
"author": "Daniel Valdebenito",
"license": "ISC",
"bugs": {
"url": "https://github.com/valdebenitoalbornoz/fpay-test/issues"
},
"homepage": "https://github.com/valdebenitoalbornoz/fpay-test#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.0"
}
}