-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
49 lines (49 loc) · 1.73 KB
/
package.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "soil-turborepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev --filter=web... --parallel",
"dev:alpha": "turbo run dev --filter=@eden/app-alpha... --parallel",
"dev:nodes": "turbo run dev --filter=@eden/app-nodes... --parallel",
"dev:grants": "turbo run dev --filter=@eden/app-grants... --parallel",
"storybook": "turbo run sb --filter=storybook... --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"test": "yarn workspace @eden/package-ui test",
"test:coverage": "yarn workspace @eden/package-ui test --coverage",
"test:watch": "yarn workspace @eden/package-ui test --watch",
"test:turbo": "turbo run test --filter=@eden/package-ui",
"clean": "turbo run clean",
"clean-windows": "turbo run clean-windows",
"build": "turbo run build --filter=web...",
"build:alpha": "turbo run build --filter=@eden/app-alpha...",
"build:nodes": "turbo run build --filter=@eden/app-nodes...",
"build:grants": "turbo run build --filter=@eden/app-grants...",
"build:storybook": "turbo run build:storybook --filter=storybook...",
"build-storybook": "yarn workspace storybook build-storybook",
"prepare": "husky install",
"codegen:eden": "turbo run codegen:eden"
},
"devDependencies": {
"@eden/package-config": "*",
"husky": "^8.0.0",
"lint-staged": ">=10",
"prettier": "latest",
"prettier-plugin-tailwindcss": "^0.1.13",
"turbo": "latest"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"dependencies": {},
"packageManager": "[email protected]",
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}