-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
53
54
55
56
57
58
59
60
61
{
"dependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/uuid": "^9.0.8",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.3",
"pg": "^8.11.3",
"pg-promise": "^11.5.4",
"typescript": "^5.4.2",
"uuid": "^9.0.1"
},
"name": "apeirootechtest",
"description": "",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JaimeOnaindia/ApeirooTechTest.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JaimeOnaindia/ApeirooTechTest/issues"
},
"homepage": "https://github.com/JaimeOnaindia/ApeirooTechTest#readme",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.12",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"supertest": "^6.3.4"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"\\.js$",
"/dist/"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
]
}
}