-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.88 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.88 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"scripts": {
"clean": "rm -rf compiled",
"compile": "tsc",
"compile:watch": "tsc -w",
"dev": "npm run clean && npm run compile && { npm run compile:watch &\n NODE_ENV=dev nodemon &\n wait\n }",
"lint": "{ find src -name '*.ts' | xargs tslint --project tsconfig.json --config tslint.json ; }",
"knex": "knex -- \"$@\"",
"postinstall": "npm run compile",
"coverage": "npm run clean && npm run compile && istanbul cover -x '**/*.test.js*' -x '**/__test__/**/*.*' -x '**/entry.js' _mocha --root compiled --include-all-sources true -- --timeout 5000 --require test_setup.js 'compiled/**/*.test.js' && remap-istanbul -i coverage/coverage.json -o html-report -t html",
"start": "node compiled/entry.js",
"test": "npm run clean && npm run compile && mocha --timeout 20000 --require source-map-support/register --require test_setup.js 'compiled/**/*.test.js'",
"test:watch": "npm run clean && npm run compile && { npm run compile:watch &\nmocha --timeout 20000 --require source-map-support/register --require test_setup.js 'compiled/**/*.test.js' --watch --watch-extensions js &\nwait\n}"
},
"dependencies": {
"axios": "0.19.2",
"bcrypt": "4.0.1",
"dotenv": "8.2.0",
"knex": "0.21.1",
"knex-postgis": "0.12.0",
"koa": "2.2.0",
"koa-body": "4.0.7",
"koa-cookie": "1.0.0",
"koa-helmet": "4.0.0",
"koa-router": "7.2.0",
"koa-send": "^5.0.0",
"koa-session": "6.0.0",
"koa-static-server": "1.2.1",
"lodash": "4.17.15",
"memory-cache": "0.2.0",
"mocha.parallel": "0.15.3",
"moment": "2.19.3",
"moment-timezone": "^0.5.31",
"node-uuid": "1.4.8",
"pg": "8.2.1"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/bcrypt": "3.0.0",
"@types/chai": "3.4.34",
"@types/chai-http": "0.0.30",
"@types/dotenv": "8.2.0",
"@types/knex": "0.16.1",
"@types/knex-postgis": "0.2.3",
"@types/koa": "2.0.39",
"@types/koa-bodyparser": "4.2.2",
"@types/koa-cookie": "1.0.0",
"@types/koa-router": "7.0.22",
"@types/koa-send": "^4.1.2",
"@types/koa-session": "5.10.2",
"@types/lodash": "4.14.62",
"@types/memory-cache": "0.0.31",
"@types/mocha": "2.2.35",
"@types/moment": "2.13.0",
"@types/moment-timezone": "^0.5.13",
"@types/node": "10.12.2",
"@types/node-uuid": "0.0.28",
"@types/pg": "7.14.3",
"@types/sinon": "1.16.35",
"@types/sinon-as-promised": "4.0.6",
"@types/sinon-chai": "2.7.27",
"@types/supertest": "2.0.9",
"chai": "3.4.1",
"chai-deep-match": "1.0.2",
"chai-http": "3.0.0",
"istanbul": "0.4.5",
"mocha": "7.1.2",
"nodemon": "2.0.4",
"remap-istanbul": "0.11.1",
"sinon": "1.17.7",
"sinon-as-promised": "4.0.3",
"sinon-chai": "2.8.0",
"source-map-support": "0.4.11",
"supertest": "4.0.2",
"tslint": "5.8.0",
"tslint-immutable": "4.4.0",
"typescript": "3.9.3"
}
}