-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 898 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 898 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
{
"name": "algorithm-study",
"description": "A deterministic multi-language algorithm study repository (Python/TS/JS) with auto-generated documentation and local dependency management.",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "tsx Algorithm/ts/main.ts",
"serve": "live-server public",
"test": "vitest run",
"lint": "prettier -c . && eslint .",
"fmt": "prettier -w ."
},
"devDependencies": {
"tsx": "^4.20.6",
"vitest": "^2.1.9",
"typescript": "^5.9.3",
"prettier": "^3.6.2",
"@types/node": "^22.18.13",
"eslint": "^9.38.0",
"live-server": "^1.2.2"
},
"dependencies": {
"@babel/standalone": "^7.29.1",
"@fortawesome/fontawesome-free": "^7.2.0",
"prismjs": "^1.30.0",
"react": "18",
"react-dom": "18"
}
}