-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 770 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 770 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
{
"name": "opendsa",
"private": true,
"version": "1.0.0",
"description": "An open-source, interactive platform for visualizing data structures and algorithms.",
"main": "index.js",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"test": "turbo test",
"type-check": "turbo type-check",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"prepare": "husky install"
},
"devDependencies": {
"@opendsa/config": "workspace:*",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"turbo": "^2.7.5"
},
"keywords": [],
"author": "Solomon Eshun",
"license": "MIT",
"packageManager": "pnpm@10.28.1",
"engines": {
"node": ">=18.17.0"
}
}