-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "leetcode-typescript",
"version": "1.0.0",
"description": "Solutions for leetcode tasks by typescript",
"main": "index.ts",
"scripts": {
"test": "tsc && jest --coverage",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/dev_ik/leetcode-typescript.git"
},
"keywords": [
"leetcode",
"solutions",
"typescript"
],
"author": "DevIK",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/dev_ik/leetcode-typescript/issues"
},
"homepage": "https://gitlab.com/dev_ik/leetcode-typescript#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-perfectionist": "^4.6.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5"
},
"dependencies": {
"typescript": "^5.7.3"
}
}