-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
{
"private": true,
"version": "0.1.0",
"name": "attribution-generator-api",
"description": "Create attribution hints for images from Wikipedia and Wikimedia Commons.",
"homepage": "https://github.com/wmde/attribution-generator-api",
"author": "bitcrowd <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:wmde/attribution-generator-api.git"
},
"license": "GPL-2.0",
"main": "server.js",
"scripts": {
"start": "node start.js",
"watch": "nodemon start.js",
"debug": "ndb start.js",
"console": "node --experimental-repl-await console.js",
"lint": "eslint --ignore-path .gitignore . scripts/*",
"test": "jest",
"sequentialtest": "yarn test --runInBand --detectOpenHandles --forceExit",
"debugtest": "yarn sequentialtest",
"apidoc": "scripts/gen-apidoc > openapi.yaml"
},
"engines": {
"node": "^10.14.2"
},
"dependencies": {
"axios": "^0.18.0",
"boom": "^7.2.0",
"bunyan": "^1.8.12",
"dotenv": "^6.0.0",
"good": "^8.1.1",
"good-bunyan": "^2.0.1",
"hapi": "^17.5.4",
"hapi-router": "^4.0.0",
"hapi-swaggered": "^3.0.3",
"hapi-swaggered-ui": "^3.0.2",
"inert": "^5.1.2",
"joi": "^14.3.0",
"jsdom": "^13.1.0",
"matomo-tracker": "^2.2.0",
"repl.history": "^0.1.4",
"vision": "^5.4.4"
},
"devDependencies": {
"@pollyjs/adapter-node-http": "^1.4.2",
"@pollyjs/core": "^1.4.2",
"@pollyjs/persister-fs": "^1.4.2",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^23.5.0",
"jest-environment-node": "^23.4.0",
"js-yaml": "^3.12.0",
"ndb": "^1.0.25",
"nodemon": "^1.18.4",
"prettier": "^1.15.3"
}
}