forked from andrelind/lbn-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.37 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.37 KB
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
{
"name": "lbn-core",
"version": "1.0.226",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && yarn tsc",
"prepublish": "rm -rf dist && yarn tsc",
"amg": "ts-node scripts/amg/parser.ts",
"amgpdf": "ts-node scripts/amg/pdfParser.ts",
"ffg2xws": "node scripts/ffg2xws.js && prettier --write src/assets/ffg-xws.json",
"update:xwing": "ts-node ./scripts/xwing-data/merge.ts",
"update:ffg": "ts-node ./scripts/ffg/scrape.ts",
"update:sirjorj": "ts-node ./scripts/sirjorj/merge.ts",
"ml:train": "yarn ts-node scripts/ML/create_pilot_csv.ts; python3 scripts/ML/train_lit.py; yarn ts-node scripts/ML/update_predictions.ts; cp scripts/ML/plot_data.json ../web/public/static/plot_data.json"
},
"devDependencies": {
"@types/async-csv": "^2.1.1",
"@types/exceljs": "^1.3.0",
"@types/node": "^14.14.10",
"@types/node-fetch": "^2.5.8",
"@types/pdf-parse": "^1.1.1",
"@types/prettier": "^2.2.0",
"@types/uuid": "^8.3.0",
"async-csv": "^2.1.3",
"csv-writer": "^1.6.0",
"exceljs": "^4.2.1",
"jsonfile": "^6.1.0",
"node-fetch": "^2.6.1",
"ora": "^5.4.1",
"pdf-parse": "^1.1.1",
"pdfreader": "^2.0.0",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"dependencies": {
"redux": "^4.0.5",
"uuid": "^8.3.1"
}
}