-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 951 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 951 Bytes
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
{
"name": "grokking-algorithms-ts",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "TypeScript implementations and exercises from 'Grokking Algorithms' by Aditya Bhargava",
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"bench": "vitest bench run",
"bench:watch": "vitest bench",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@typescript/native": "npm:typescript@^7.0.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"fast-check": "^4.0.0",
"prettier": "^3.0.0",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"vitest": "^3.0.0"
}
}