This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.74 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "node-app-template",
"version": "0.0.1",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prepublish": "yarn lint && yarn build",
"lint": "yarn tslint --format stylish --project . --exclude 'node_modules/**/*.ts'",
"coverage": "yarn build && yarn jest --coverage && cat ./coverage/lcov.info | coveralls",
"build": "rm -rf dist/ && tsc --project tsconfig.json",
"start": "DEBUG=* yarn build && yarn node-dev dist/bin/main.js --config=config.json",
"start-dev": "DEBUG=* yarn ts-node-dev src/bin/main.ts --config=config.json",
"test": "test-ts && test-rest",
"test-ts": "yarn jest",
"test-rest": "yarn ts-node-dev test/rest/index.ts",
"create-migration": "yarn typeorm migration:generate -n",
"migrate": "exit 0"
},
"dependencies": {
"@machinomy/logger": "^0.2.3",
"@types/json-rpc-ws": "^4.0.2",
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^5.0.1",
"@types/koa-router": "^7.0.33",
"@types/koa-session": "^5.7.4",
"@types/newman": "^3.10.0",
"@types/node": "^10.12.11",
"@types/yargs": "^12.0.1",
"decko": "^1.2.0",
"json-rpc-ws": "^7.0.0",
"koa": "^2.6.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-session": "^5.10.0",
"newman": "^4.2.2",
"pg": "^7.7.1",
"sqlite3": "^4.0.4",
"ts-typed-events": "^1.1.1",
"typeorm": "^0.2.9",
"yargs": "^12.0.5"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"jest": "^23.6.0",
"node-dev": "^3.1.3",
"nyc": "^13.1.0",
"tslint": "^5.11.0",
"tslint-config-standard-plus": "^2.1.1",
"ts-jest": "23.10.5",
"ts-node-dev": "^1.0.0-pre.30",
"typescript": "^3.3.0-dev.20181214"
}
}