This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 2.26 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@raincatcher/demo-server",
"version": "1.1.2",
"description": "Raincatcher demo application server using express",
"types": "src/index.ts",
"main": "src/index.js",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"clean": "del coverage_report src/*.js src/**/*.js src/**/**/*.js src/*.map src/**/*.map src/**/**/*.map test/**/*.js test/**/*.map",
"build": "tsc",
"start": "node src/index.js",
"start:ts": "ts-node src/index.ts",
"startDebug": "ts-node --inspect --debug-brk src/index.ts",
"watch": "nodemon",
"test": "nyc mocha"
},
"private": true,
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text"
],
"report-dir": "coverage_report",
"check-coverage": true,
"lines": 75,
"functions": 60,
"branches": 70
},
"devDependencies": {
"@types/mocha": "2.2.44",
"del-cli": "1.1.0",
"mocha": "4.0.1",
"nodemon": "1.12.1",
"nyc": "11.3.0",
"source-map-support": "0.5.0",
"ts-node": "3.3.0",
"typescript": "2.6.1"
},
"dependencies": {
"@raincatcher/auth-passport": "1.1.2",
"@raincatcher/datasync-cloud": "1.1.2",
"@raincatcher/express-auth": "1.1.2",
"@raincatcher/filestore": "1.1.2",
"@raincatcher/logger": "1.1.2",
"@raincatcher/wfm-demo-data": "1.1.2",
"@raincatcher/wfm-rest-api": "1.1.2",
"@raincatcher/wfm-user": "1.1.2",
"@types/bluebird": "3.5.18",
"@types/body-parser": "1.16.8",
"@types/connect-redis": "0.0.7",
"@types/cookie-parser": "1.4.1",
"@types/cors": "2.8.3",
"@types/express": "4.0.39",
"@types/express-handlebars": "0.0.30",
"@types/lodash": "4.14.85",
"@types/mongodb": "2.2.16",
"@types/morgan": "1.7.35",
"@types/node": "8.0.53",
"@types/serve-favicon": "2.2.30",
"bluebird": "3.5.1",
"body-parser": "1.18.2",
"connect-redis": "3.3.2",
"cookie-parser": "1.4.3",
"cors": "2.8.4",
"express": "4.16.2",
"express-handlebars": "3.0.0",
"express-session": "1.15.6",
"keycloak-connect": "3.4.0",
"lodash": "4.17.4",
"mongodb": "2.2.33",
"morgan": "1.9.0",
"serve-favicon": "2.4.5"
}
}