-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 906 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
38
39
40
41
42
{
"name": "@wattbewerb/makstr-client",
"version": "0.0.1",
"description": "",
"main": "src/main.ts",
"bin": {
"wattbewerb": "./src/main.ts"
},
"scripts": {
"dev": "ts-node src/server.ts",
"start": "node dist/server.js",
"build": "tsc -p ."
},
"author": {
"name": "Christian Schuff",
"email": "christian.schuff@gmail.com"
},
"repository": {
"type": "git",
"url": "git@github.com:wattbewerb/wattbewerb.git"
},
"license": "MIT",
"engines": {
"node": "14"
},
"dependencies": {
"axios": "0.21.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"moment": "2.29.1"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/express": "^4.17.11",
"@types/node": "^14.14.22",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"tsc": "^1.20150623.0",
"typescript": "^4.1.3"
}
}