forked from BuilderOSS/nouns-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 737 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 737 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
{
"private": true,
"scripts": {
"anvil": "source .env.local && anvil --fork-url $ANVIL_FORK_URL --fork-block-number $ANVIL_BLOCK_NUMBER",
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"prepare": "husky install",
"type-check": "turbo run type-check",
"lint": "turbo run lint",
"eslint": "eslint --fix . --ext .ts,.tsx",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"ci": "turbo run lint test"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-custom": "workspace:*",
"husky": "^8.0.3",
"prettier": "^2.5.1",
"turbo": "latest"
},
"packageManager": "pnpm@7.15.0"
}