-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 920 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 920 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
{
"private": true,
"workspaces": [
"apps/*",
"libs/*"
],
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"build:cave": "turbo run build --filter=cave...",
"dev:cave": "turbo run dev --filter=cave...",
"test:cave": "turbo run test --filter=cave...",
"dev": "turbo run dev --filter=blockchain --filter=cave...",
"clean": "rimraf \"./**/{node_modules,dist,.turbo,.next,.eslintcache,.vercel,.cache}\"",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"rimraf": "^4.1.2",
"turbo": "1.8.0"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"typescript": "^4.9.5"
},
"version": "3.0.0"
}