-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 2.17 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
{
"name": "wikipedia-bot-canary",
"version": "1.0.0",
"description": "A bot where you can search Wikipedia articles with it. Not affiliated with any service or product of the Wikimedia Foundation.",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "tsc --watch & nodemon dist",
"dev:windows": "concurrently \"tsc --watch\" \"nodemon dist\"",
"ngrok": "tsc && node dist/utils/ext_ngrok.js",
"test": "./features/runtests.sh",
"cucumber": "cucumber-js",
"clean": "rm dist -rf",
"build": "tsc",
"lint": "eslint --ext .ts ./src",
"lint:fix": "eslint --ext .ts ./src --fix",
"contributors:add": "all-contributors add",
"contributors:check": "all-contributors check",
"contributors:generate": "all-contributors generate",
"zk:init": "cd docker-compose && mkdir data && sudo chown 1001 data",
"zk:start": "docker-compose -f docker/zookeeper.yml up -d",
"zk:stop": "docker-compose -f docker/zookeeper.yml down"
},
"dependencies": {
"@fluent/bundle": "^0.16.1",
"dotenv": "^8.2.0",
"fastify": "^3.20.2",
"fastify-helmet": "^5.3.2",
"franc": "^6.0.0",
"ioredis": "^4.27.8",
"normalize-text": "^2.3.3",
"phin": "^3.6.0",
"pino": "^7.0.0-rc.3",
"slash-create": "^4.0.1",
"wikijs": "^6.3.2",
"zookeeper": "^4.10.0"
},
"devDependencies": {
"@cucumber/cucumber": "^7.3.1",
"@cucumber/pretty-formatter": "^1.0.0-alpha.1",
"@types/express": "^4.17.11",
"@types/ioredis": "^4.27.1",
"@types/jest": "^27.0.2",
"@types/node": "^14.14.37",
"@types/phin": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"all-contributors-cli": "^6.20.0",
"concurrently": "^6.2.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"ioredis-mock": "^5.6.0",
"ngrok": "^4.2.2",
"nodemon": "^2.0.12",
"pino-colada": "^2.1.0",
"pino-pretty": "^6.0.0",
"prettier": "^2.2.1",
"ts-node": "^10.2.1",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=16.x.x",
"yarn": ">=3.x.x"
},
"packageManager": "yarn@3.0.2"
}