-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.7 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
50
51
52
53
54
{
"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",
"dev:turbopack": "turbo dev:turbopack --filter frontend-v3",
"dev:beets:turbopack": "turbo dev:turbopack --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",
"prettier": "turbo prettier",
"prettier:fix": "turbo prettier:fix",
"stylelint": "turbo stylelint",
"stylelint:fix": "turbo stylelint:fix",
"test:e2e": "turbo test:e2e --ui=stream --log-order=stream --",
"test:e2e:ui": "turbo test:e2e:ui --ui=stream --log-order=stream --",
"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",
"sharp": "0.33.5",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2",
"turbo": "^2.1.2",
"typescript": "5.7.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"@types/react": "^18.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}
}
}