-
-
Notifications
You must be signed in to change notification settings - Fork 160
/
package.json
48 lines (48 loc) · 1.39 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
{
"name": "@exercism/typescript-track",
"version": "1.0.0",
"description": "Exercism TypeScript track top-level runner. Not meant for individual exercises.",
"author": "Katrina Owen",
"contributors": [
"Derk-Jan Karrenbeld <[email protected]> (https://derk-jan.com)"
],
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/exercism/typescript"
},
"type": "module",
"engines": {
"node": "^18.16.0 || >=20.0.0"
},
"devDependencies": {
"@exercism/babel-preset-typescript": "^0.6.0",
"@exercism/eslint-config-typescript": "^0.8.0",
"@jest/globals": "^29.7.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "~22.7.6",
"babel-jest": "^29.7.0",
"core-js": "~3.38.1",
"eslint": "^9.12.0",
"expect": "^29.7.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"shelljs": "^0.8.5",
"typescript": "~5.6.3",
"typescript-eslint": "^8.10.0"
},
"scripts": {
"ci": "corepack yarn node scripts/ci.mjs",
"ci:check": "corepack yarn node scripts/ci-check.mjs",
"lint": "corepack yarn node scripts/lint.mjs",
"sync": "corepack yarn node scripts/sync.mjs",
"test": "corepack yarn node scripts/test.mjs",
"format": "corepack yarn node scripts/format.mjs"
},
"packageManager": "[email protected]",
"dependencies": {
"tstyche": "^2.1.1"
}
}