forked from the-arena-project/typescript-arenas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 810 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 810 Bytes
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
{
"name": "track-boilerplate",
"version": "1.0.0",
"description": "A basic track boilerplate for The Arena Project",
"main": "index.js",
"scripts": {
"test": "ts-node --project ./script.tsconfig.json ./scripts/test-jest-challenge.ts",
"lint": "eslint . --ext .ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.6",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.9.5"
},
"dependencies": {
"execa": "^5.1.1"
}
}