-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "oai-pmh-service",
"version": "1.0.0",
"description": "A standalone OAI-PMH provider for Nodejs that can support multiple data sources.",
"main": "index.js",
"license": "GPL-3.0",
"repository": "https://github.com/hatfieldlibrary/oai-provider-service",
"engines": {
"node": ">=8.9.4"
},
"scripts": {
"start": "cd dist && NODE_ENV=production node index",
"compile": "gulp dist-clean && gulp build && gulp copy-production",
"dev": "gulp build && gulp copy && cd dist && node index | pino-pretty ",
"test": "node build.js && mocha test/**/*.ts --exit"
},
"dependencies": {
"@types/bluebird": "^3.5.30",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.3",
"@types/lodash": "^4.14.149",
"@types/mysql": "^2.15.9",
"@types/pino": "^5.17.0",
"@types/xml": "^1.0.4",
"ajv": "^6.12.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"filesize": "^6.1.0",
"humanname": "^0.2.2",
"lodash": "^4.17.19",
"mongodb": "^3.5.5",
"mysql": "^2.18.1",
"pino": "^5.17.0",
"pino-pretty": "^3.6.1",
"xml": "^1.0.1",
"xmldom": "^0.5.0",
"xo": "^0.28.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"awesome-typescript-loader": "^5.2.1",
"backpack-core": "^0.8.4",
"browser-sync": "^2.26.7",
"chai": "^4.2.0",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"gulp-watch": "^5.0.1",
"mocha": "^7.1.1",
"shelljs": "^0.8.3",
"source-map-support": "^0.5.16",
"supertest": "^4.0.2",
"ts-node": "^8.7.0",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}