-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 919 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
{
"name": "simplejson",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"build": "tsc",
"watch-ts": "tsc --watch",
"watch-js": "nodemon -e ini,js lib/index.js",
"watch": "concurrently \"npm:watch-*\"",
"test": "echo \"no test specified\""
},
"author": "Fabian Stamm <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.16.0",
"@types/koa": "^2.0.47",
"@types/koa-router": "^7.0.35",
"@types/moment": "^2.13.0",
"@types/node": "^10.12.12",
"concurrently": "^4.1.0",
"nodemon": "^1.18.7",
"typescript": "^3.2.2"
},
"dependencies": {
"@hibas123/nodelogging": "^1.3.21",
"influx": "^5.0.7",
"koa": "^2.6.2",
"koa-body": "^4.0.4",
"koa-router": "^7.4.0",
"moment": "^2.22.2"
}
}