-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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": "computer-science",
"version": "1.0.0",
"description": "Computer Science in TypeScript",
"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'"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": ["ts-jest", { "tsconfig": "tsconfig.json" }]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/monkey0722/computer-science.git"
},
"author": "monkey0722",
"license": "ISC",
"bugs": {
"url": "https://github.com/monkey0722/computer-science/issues"
},
"homepage": "https://github.com/monkey0722/computer-science#readme"
}