-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.61 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": "@balancer/frontend-monorepo",
"private": true,
"scripts": {
"build": "turbo build",
"start": "turbo start",
"dev": "pnpm run dev:bal",
"dev:bal": "turbo dev --filter frontend-v3",
"dev:beets": "turbo dev --filter beets-frontend-v3",
"graphql:gen": "turbo graphql:gen",
"lint:all": "turbo run lint format --continue",
"lint:all:fix": "turbo run lint:fix format:fix --continue --force",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"format": "prettier '*.*(md|json|yaml|ts|js|tsx)' --check --cache --cache-location='node_modules/.cache/.prettiercache'",
"format:fix": "prettier '*.*(md|json|yaml|ts|js|tsx)' --write --cache --cache-location='node_modules/.cache/.prettiercache' --log-level=warn",
"stylelint": "stylelint '**/*.css'",
"stylelint:fix": "pnpm run stylelint -- --fix",
"test:integration": "turbo test:integration --ui=stream --log-order=stream --",
"test:unit": "turbo test:unit --ui=stream --log-order=stream --",
"typecheck": "turbo typecheck",
"prepare": "husky"
},
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^9.1.2",
"lint-staged": "^13.2.3",
"prettier": "^3.2.5",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2",
"turbo": "^2.1.2",
"typescript": "^5.4.5"
},
"packageManager": "pnpm@9.0.6",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"@types/react": "^18.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}
}
}