-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.66 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": "stt-data-core-datascore",
"description": "STT DataCore DataScore",
"author": "ironyWrit",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"check": "tsc --noEmit",
"precalculate": "yarn tsc --project ./tsconfig.node.json && node build/datascore/scripts/precalculate.js",
"shipcalc": "yarn tsc --project ./tsconfig.node.json && node build/datascore/scripts/shipcalc.js",
"shipcalc-fresh": "yarn tsc --project ./tsconfig.node.json && node build/datascore/scripts/shipcalc.js --fresh",
"scoring": "yarn tsc --project ./tsconfig.node.json && node build/datascore/scripts/scoring.js --debug",
"calc": "yarn tsc --project ./tsconfig.node.json && node build/datascore/scripts/scoring.js",
"build-scripts": "yarn tsc --project ./tsconfig.node.json",
"eventstats": "yarn tsc --project ./tsconfig.node.json && node build/datascore/scripts/eventstats.js"
},
"dependencies": {
"color-convert": "^2.0.1",
"exceljs": "^4.4.0",
"lodash-es": "^4.17.21",
"lodash.combinations": "^18.11.1",
"lz-string": "^1.5.0",
"moment": "^2.30.1",
"readline-sync": "^1.4.10",
"seedrandom": "^3.0.5",
"showdown": "^2.0.6",
"uuid": "^9.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/stt-datacore/datascore"
},
"bugs": {
"url": "https://github.com/stt-datacore/datascore/issues"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.9.0",
"@types/readline-sync": "^1.4.8",
"@types/showdown": "^2.0.6",
"@types/uuid": "^9.0.8",
"dependency-cruiser": "^16.9.0",
"dotenv": "^16.4.5",
"madge": "^8.0.0",
"typescript": "^5.4.5"
}
}