-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "brainy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"lint": "eslint -c .eslintrc.yml --ignore-path .gitignore '**/*.{js,jsx}'",
"build": "yarn && cd client && yarn && yarn build",
"start": "node .",
"crawl": "node ./lib/crawler/index.test.js",
"reindex": "node ./db/courses/clients/elasticsearch"
},
"author": "Yevgeny Yakushev <[email protected]>",
"license": "ISC",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"crawler": "^1.2.1",
"ejs": "^2.6.1",
"elasticsearch": "^15.3.0",
"express": "^4.16.4",
"helmet": "^3.18.0",
"html-pdf": "^2.2.0",
"moment": "^2.24.0",
"mongodb": "^3.1.10",
"mongoose": "^5.4.1",
"node-telegram-bot-api": "^0.30.0",
"q": "^1.5.1",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"require-all": "^3.0.0",
"sitemapper": "^2.2.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.13.0",
"prettier": "^1.17.0",
"prettierrc": "^0.0.0-5"
}
}