-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 896 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 896 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
32
33
34
{
"name": "deeptable-monorepo",
"version": "1.0.0",
"private": true,
"workspaces": [
"client",
"server",
"shared"
],
"scripts": {
"dev": "bun --filter '*' dev",
"build": "bun --filter '*' build",
"start": "bun --filter '*' start",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\""
},
"devDependencies": {
"@types/bun": "^1.2.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"concurrently": "^9.1.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.5.3"
},
"dependencies": {
"@types/papaparse": "^5.3.15",
"cheerio": "^1.0.0",
"lucide-react": "^0.483.0",
"papaparse": "^5.5.2"
}
}