-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 996 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 996 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
32
33
34
35
36
37
38
39
40
41
{
"name": "computer-science",
"version": "0.0.1",
"private": true,
"description": "Computer Science in TypeScript",
"license": "ISC",
"main": "",
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit --skipLibCheck",
"lint": "eslint ./**/*.ts",
"lint:fix": "eslint --fix ./**/*.ts",
"prettier": "prettier --write './**/*.{js,ts,tsx}' --ignore-path '.gitignore'",
"check:all": "yarn test && yarn lint && yarn typecheck"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^10.2.0",
"jest": "^30.3.0",
"lefthook": "^2.1.5",
"prettier": "^3.8.2",
"ts-jest": "^29.4.9",
"typescript": "^6.0.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
}
},
"engines": {
"node": ">=24"
},
"packageManager": "yarn@1.22.22"
}