-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "erbs-api",
"version": "1.0.0",
"description": "ERBS Wiki Data Api",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node dist/playground/src/",
"scrape:Wiki": "ts-node src/generateData.ts",
"scrape:Public": "ts-node src/generateNewData.ts",
"scrape:Client": "ts-node src/getClientData.ts",
"scrape:Master": "ts-node src/generateMasterData.ts",
"start:dev": "ts-node ./src/",
"build": "tsc"
},
"author": "Paul Endri",
"license": "ISC",
"dependencies": {
"@types/mongoose": "^5.10.3",
"axios": "^0.21.1",
"bottleneck": "^2.19.5",
"cheerio": "^1.0.0-rc.3",
"dotenv": "^8.2.0",
"js-combinatorics": "^1.4.5",
"json-format": "^1.0.1",
"knex": "^0.21.16",
"mongoose": "^5.11.9",
"mysql2": "^2.2.5",
"node-fetch": "^2.6.0",
"objection": "^2.2.7",
"request": "^2.88.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.23",
"@types/node": "^14.14.16",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}