-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "escompify",
"packageManager": "[email protected]",
"version": "0.1.0",
"description": "",
"bin": "bin/escompify",
"private": true,
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"dev": "tsc --build --watch",
"escompify": "ts-node -r tsconfig-paths/register ./src/main.ts",
"runFile": "ts-node -r tsconfig-paths/register",
"clean": "tsc --build --clean",
"lint": "eslint --ext .js,.ts",
"format": "biome format --write .",
"ci": "biome ci .",
"test": "jest --silent=false --verbose false",
"runner:fose": "chmod +x ./runners/fose2023/run.sh && ./runners/fose2023/run.sh"
},
"dependencies": {
"@babel/parser": "7.22.14",
"@babel/traverse": "7.22.11",
"@babel/types": "7.22.11",
"dotenv": "16.1.4",
"progress": "2.0.3",
"semver": "7.5.0",
"simple-git": "3.19.1",
"yargs": "17.7.1"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/jest": "29.5.12",
"@types/json2csv": "5.0.7",
"@types/node": "20.11.24",
"@types/yargs": "17.0.32",
"jest": "29.7.0",
"json2csv": "6.0.0-alpha.2",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"tsc-alias": "1.8.8",
"tsconfig-paths": "4.2.0",
"tslib": "2.6.2",
"typescript": "5.3.3"
}
}