-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
{
"name": "speedrunbrowser-middleware",
"version": "1.0.0",
"description": "Middleware for a Speedrun.com smartphone client to categorize and crawl data",
"main": "index.js",
"scripts": {
"lint": "npx eslint .",
"test": "docker-compose run web /app/node_modules/.bin/mocha --exit -r ts-node/register /app/test/**/*.ts"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:8022/beald/speedrun-browser.git"
},
"keywords": [
"speedrun",
"middleware"
],
"author": "Daniel Beal <[email protected]>",
"license": "GPL-3.0-or-later",
"dependencies": {
"@13013/indexer": "git+https://git.dbeal.dev/beald/indexer.git#v0.0.4",
"@types/ioredis": "^4.17.3",
"@types/lodash": "^4.14.159",
"@types/moment": "^2.13.0",
"@types/mongodb": "^3.5.25",
"@types/node": "^10.17.28",
"express": "^4.17.1",
"firebase-admin": "^9.5.0",
"got": "^11.5.2",
"ioredis": "^4.17.3",
"lodash": "^4.17.20",
"moment": "^2.27.0",
"mongodb": "^3.6.0",
"p-map": "^4.0.0",
"p-timeout": "^3.2.0",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.7",
"@types/got": "^9.6.11",
"@types/mocha": "^5.2.7",
"@types/p-map": "^2.0.0",
"@types/p-timeout": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"chai": "^4.2.0",
"eslint": "^7.7.0",
"mocha": "^8.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}