-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "github-repo-explorer",
"version": "1.0.0",
"description": "Coding challenge for RTL HbbTV Systems application",
"main": "app.ts",
"scripts": {
"build": "npx tsc",
"start": "node dist/app.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/app.js\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/schaetz/github-repo-explorer.git"
},
"author": "Stefan Schätz",
"license": "ISC",
"bugs": {
"url": "https://github.com/schaetz/github-repo-explorer/issues"
},
"homepage": "https://github.com/schaetz/github-repo-explorer#readme",
"dependencies": {
"@types/jest": "^29.5.1",
"axios": "^1.4.0",
"express": "^4.18.2"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@types/express": "^4.17.17",
"@types/node": "^20.1.2",
"babel-jest": "^29.5.0",
"concurrently": "^8.0.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}