-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.27 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
{
"name": "backend-challenge",
"version": "1.0.0",
"description": "TKA Development is a team of builders who value creativity, teamwork, and a positive attitude. We believe that technical skill is important, but we don't judge people based on their background or appearance. We welcome all kinds of builders, creators, and designers, and we're particularly excited to invite developers to take on our open-ended challenge.",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TKA-Developments/Backend-Challenge.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TKA-Developments/Backend-Challenge/issues"
},
"homepage": "https://github.com/TKA-Developments/Backend-Challenge#readme",
"dependencies": {
"@types/pg": "^8.10.1",
"express": "^4.18.2",
"pg": "^8.11.0",
"pg-pool": "^3.6.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"typescript": "^5.0.4"
}
}