-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.16 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "typescript-data-structures-algorithms",
"version": "1.0.0",
"description": "Algorithms and data structures implemented in TypeScript",
"main": "dist/index.js",
"repository": "https://github.com/francislagares/typescript-data-structures-algorithms.git",
"author": "Francis Lagares",
"license": "MIT",
"scripts": {
"build-ts": "tsc",
"build-dev": "tsc --watch",
"start": "ts-node src/index.ts",
"dev": "concurrently \"pnpm:build-dev\" \"pnpm:start\"",
"debug": "node --inspect-brk -r ts-node/register src/index.ts",
"test:ci": "vitest run",
"test:watch": "vitest watch --ui",
"test:coverage": "vitest run --coverage",
"test:report": "pnpx vite preview --outDir ./coverage",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx|json|md)\" --write",
"lint": "eslint --fix",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"commitizen": "^4.3.0",
"concurrently": "^9.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8",
"vitest-mock-extended": "^2.0.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">=23.4.0",
"npm": ">=9.15.0"
},
"packageManager": "pnpm@9.15.2+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321"
}