-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
49
50
51
{
"name": "leetcode-problems-ts",
"description": "My solutions to leetcode problems written in typescript.",
"private": true,
"scripts": {
"start": "nodemon src/index.ts",
"test": "jest --watch",
"format": "prettier -uw --cache . && git update-index --again",
"lint": "eslint --cache --fix --ext .ts src",
"new": "hygen problem with-prompt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devastion/leetcode-problems-ts.git"
},
"keywords": [
"leetcode",
"problems",
"solutions"
],
"author": "Dimitar Banev",
"license": "MIT",
"bugs": {
"url": "https://github.com/devastion/leetcode-problems-ts/issues"
},
"homepage": "https://github.com/devastion/leetcode-problems-ts#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-extended": "^2.0.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^46.0.1",
"hygen": "^6.2.11",
"jest": "^29.7.0",
"jest-extended": "^3.2.4",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}