-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.42 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.42 KB
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
{
"name": "@business-card/monorepo",
"private": true,
"workspaces": ["apps/*", "configs/*", "libs/*"],
"scripts": {
"clean": "git clean -fXd $npm_package_cleanExcludePattern",
"lint": "turbo run lint",
"format": "prettier $npm_package_prettierOptions .",
"build:web": "turbo run build --filter=web",
"build:sol": "turbo run build --filter=sol",
"compile": "pnpm -F sol compile",
"deploy:local": "pnpm -F sol deploy:local",
"dev:mobile": "pnpm -F mobile dev",
"dev:mobilew": "pnpm -F mobilew dev",
"dev:web": "pnpm -F web dev",
"export": "pnpm -F web export",
"hardhat:node": "pnpm -F sol node",
"start": "pnpm -F web start",
"test": "pnpm -F sol test",
"test:watch": "pnpm -F sol test:watch"
},
"devDependencies": {
"@trunkio/launcher": "1.2.1",
"eslint-config-custom": "workspace:*",
"prettier-config": "workspace:*",
"turbo": "1.5.1"
},
"packageManager": "pnpm@7.12.1",
"prettier": "prettier-config",
"eslintConfig": {
"root": true,
"extends": ["custom"],
"settings": { "next": { "rootDir": ["apps/web"] } }
},
"eslintIgnorePath": "configs/eslint-ignore/.eslintignore",
"cleanExcludePattern": "-e !.env* -e !.vercel -e !.turbo",
"prettierOptions": "-c -w --cache --ignore-path configs/prettier-config/.prettierignore"
}