-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.43 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
{
"name": "dapps-monorepo",
"private": true,
"scripts": {
"build": "turbo run build",
"build:prod": "turbo run build:prod",
"dev": "turbo run dev",
"prepare": "husky install",
"svelte:check": "turbo run svelte:check",
"db:generate": "turbo run db:generate",
"db:push": "turbo run db:push",
"coverage": "turbo run coverage",
"pre-push": "turbo run pre-push",
"storybook": "turbo run storybook",
"test": "turbo run test",
"prettier:fix": "prettier --cache --write --check apps/*/src packages/*/src",
"lint:fix": "eslint --cache --fix --no-error-on-unmatched-pattern apps/*/src packages/*/src",
"format": "npm run prettier:fix && npm run lint:fix",
"dev:dashboard": "turbo run dev --filter=dashboard",
"dev:console": "turbo run dev --filter=console",
"dev:sandbox": "turbo run dev --filter=sandbox"
},
"license": "Apache-2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-custom": "*",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"turbo": "^2.1.3"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}