-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
{
"name": "heraldry-crawler",
"version": "1.0.0",
"description": "Index heraldry data from Wikipedia",
"main": "dist/index.js",
"scripts": {
"typeorm": "ts-node ./node_modules/.bin/typeorm",
"init-dbs": "rm -f data/db.sqlite && yarn init-indices",
"init-indices": "ts-node scripts/initIndices.ts",
"crawl": "ts-node scripts/crawl.ts",
"crawl-credits": "ts-node scripts/crawlCredits.ts",
"generate-sitemap": "ts-node scripts/generateSitemap.ts",
"start": "nodemon src/server.ts",
"lint": "eslint ./scripts ./src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Bertrand d'Aure",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.395.0",
"@elastic/elasticsearch": "^7.13.0",
"algoliasearch": "^4.19.1",
"axios": "^1.4.0",
"bluebird": "^3.7.2",
"cheerio": "^1.0.0-rc.12",
"cli-progress": "^3.12.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"lodash.chunk": "^4.2.0",
"sqlite3": "^5.1.6",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@types/algoliasearch": "^4.0.0",
"@types/bluebird": "^3.5.38",
"@types/cheerio": "^0.22.31",
"@types/cli-progress": "^3.11.0",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/lodash.chunk": "^4.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}