forked from exercism/typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.38 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
{
"name": "@exercism/typescript-track",
"version": "1.0.0",
"description": "Exercism TypeScript track top-level runner. Not meant for individual exercises.",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/exercism/typescript"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"chalk": "^4.1.1",
"core-js": "^3.11.0",
"diff": "^5.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"shelljs": "^0.8.4",
"typescript": "^4.2.4"
},
"scripts": {
"ci": "yarn babel-node scripts/ci",
"ci:check": "yarn babel-node scripts/ci-check",
"lint": "yarn babel-node scripts/lint",
"sync": "yarn babel-node scripts/sync",
"test": "yarn babel-node scripts/test",
"format": "yarn babel-node scripts/format"
},
"dependencies": {}
}