-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 973 Bytes
/
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
{
"private": true,
"name": "leetcode-dsa-crash-crouse",
"type": "module",
"version": "1.0.0",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.1.1",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"prettify": "prettier --write .",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch"
},
"author": "Jhonny Moreira <jobs at jhonny dot codes>",
"devDependencies": {
"@eslint/js": "^9.2.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.12.11",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^9.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tsx": "^4.10.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}