-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 956 Bytes
/
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
{
"name": "kubero-idler",
"version": "1.0.0",
"description": "Template to start a Express App ",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q --ext 'ts,json' dist/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kubero-dev/idler.git"
},
"author": "Gianni Carafa",
"license": "GPL v3",
"bugs": {
"url": "https://github.com/kubero-dev/kubero/issues"
},
"homepage": "https://github.com/kubero-dev/kubero",
"dependencies": {
"@types/node": "^20.3.1",
"dotenv": "^16.2.0",
"express": "^4.18.1",
"path": "^0.12.7",
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/node": "^17.0.34",
"concurrently": "^8.2.0",
"eslint": "^8.11.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1"
}
}