-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.15 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "refinery-api",
"version": "0.2.3",
"description": "Automated atomic information processor.",
"main": "./built/src/index.js",
"scripts": {
"start": "node ./built/server.js",
"build": "tsc",
"test": "rm ./debug/combined.log; rm ./debug/error.log; tsc; ./node_modules/mocha/bin/mocha --package ./package.json \"./tests/**/*.ts\" --ui bdd",
"coverage": "rm ./debug/combined.log; rm ./debug/error.log; tsc; nyc --reporter=lcov --reporter=text mocha --package ./package.json \"./tests/**/*.ts\" --ui bdd",
"mantest": "tsc; node --inspect-brk=9229 ./built/src/mantest.js",
"adapter": "tsc; node ./built/ibooks/adapter.js",
"in": "node ./built/src/ingressController.js",
"out": "node ./built/src/egressController.js",
"add": "node ./built/src/manualInputController.js",
"serve": "node ./built/src/server.js",
"fakedb": "node ./built/src/fixtures/fakeDb.js",
"fakedestroy": "node ./built/src/fixtures/destroyFakeDb.js"
},
"bin": {
"refinery-in": "./built/src/ingressController.js",
"refinery-out": "./built/src/egressController.js",
"refinery-add": "./built/src/manualInputController.js",
"refinery-serve": "./built/src/server.js"
},
"mocha": {
"timeout": 5000,
"recursive": true,
"require": [
"ts-node/register"
]
},
"author": "kjczarne",
"license": "Apache-2.0",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/better-sqlite3": "^5.4.0",
"@types/body-parser": "^1.19.0",
"@types/connect-flash": "0.0.35",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.155",
"@types/multer": "^1.4.4",
"@types/nano": "^7.0.0",
"@types/node-fetch": "^2.5.7",
"@types/passport": "^1.0.4",
"@types/passport-local": "^1.0.33",
"@types/pdfjs-dist": "^2.1.3",
"@types/pouchdb": "^6.4.0",
"@types/puppeteer": "^2.0.1",
"@types/sha1": "^1.1.2",
"@types/winston": "^2.4.4",
"@types/yargs": "^15.0.5",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^7.1.0",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"core-js": "^3.2.1",
"cors": "^2.8.5",
"couchdb-expression": "^1.5.4",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fast-csv": "^4.3.1",
"jsonwebtoken": "^8.5.1",
"jszip": "^3.4.0",
"lodash": "^4.17.19",
"multer": "^1.4.2",
"nano": "^8.2.2",
"node-fetch": "^2.6.1",
"node-gyp": "^7.1.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pdfjs-dist": "^2.3.200",
"pouchdb": "^7.2.1",
"pouchdb-find": "^7.2.1",
"refinery-core": "^0.2.0",
"sha1": "^1.1.1",
"ts-dedent": "^1.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"winston": "^3.2.1",
"yaml": "^1.9.2",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0"
}
}