-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 KB
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
43
44
45
{
"dependencies": {
"@types/koa": "^2.0.39",
"@types/koa-bodyparser": "^3.0.23",
"@types/koa-json": "^2.0.16",
"@types/node": "^8.0.19",
"@types/pino": "^4.7.0",
"@types/uuid": "^3.4.0",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-json": "^2.0.2",
"pino": "^4.7.1",
"typescript": "^2.4.2",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.0.2",
"@types/mocha": "^2.2.41",
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.1.0",
"supervisor": "^0.12.0",
"tslint": "^5.6.0",
"tslint-consistent-codestyle": "^1.6.0",
"tslint-eslint-rules": "^4.1.1"
},
"name": "NovaLock",
"private": true,
"version": "1.0.0",
"main": "server.js",
"repository": "git@github.com:NovaLock/backend.git",
"author": "coderfox <git@xfox.me>",
"license": "WTFPL",
"scripts": {
"test": "nyc mocha",
"test-cov": "nyc -r lcovonly mocha",
"postinstall": "tsc && echo [] > store.json",
"pretest": "tsc",
"dev": "supervisor -w . -e js,json server | pino",
"prestart": "tsc",
"start": "node server"
}
}