-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 801 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 801 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
31
{
"name": "ep-ts-interview",
"version": "0.0.0",
"description": "boilerplate for conducting EP TypeScript interviews",
"type": "module",
"engines": {
"node": ">= 20.14 < 21"
},
"devDependencies": {
"@types/jest": "~29.5",
"@types/node": "~20",
"@typescript-eslint/eslint-plugin": "~7.11.0",
"@typescript-eslint/parser": "~7.11.0",
"eslint": "~8.56",
"eslint-config-prettier": "~9.1",
"eslint-plugin-jest": "~28.5.0",
"jest": "~29.7",
"prettier": "~3.3.0",
"ts-jest": "~29.1",
"typescript": "~5.4"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write ."
},
"dependencies": {
"tslib": "~2.6"
}
}