forked from balancer/frontend-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.25 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.25 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"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:webpack": "turbo dev:webpack --filter frontend-v3",
"dev:beets:webpack": "turbo dev:webpack --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:build": "turbo test:e2e:build --ui=stream --log-order=stream --",
"test:e2e:build:ui": "turbo test:e2e:build:ui --ui=stream --log-order=stream --",
"test:e2e:dev": "NEXT_PUBLIC_E2E_DEV=1 turbo test:e2e:dev --ui=stream --log-order=stream --",
"test:e2e:dev:ui": "NEXT_PUBLIC_E2E_DEV=1 turbo test:e2e:dev:ui --ui=stream --log-order=stream --",
"test:integration": "turbo test:integration --ui=stream --log-order=stream --",
"test:integration:watch": "turbo test:integration:watch --ui=stream --log-order=stream --",
"test:unit": "turbo test:unit --ui=stream --log-order=stream --",
"test:unit:watch": "turbo test:unit:watch --ui=stream --log-order=stream --",
"test:save-api-mocks": "turbo test:save-api-mocks --ui=stream --log-order=stream --",
"typecheck": "turbo typecheck",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.2",
"lint-staged": "^13.2.3",
"prettier": "^3.2.5",
"sharp": "0.33.5",
"stylelint": "16.14.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.3",
"turbo": "2.4.4",
"typescript": "5.7.2"
},
"packageManager": "pnpm@9.8.0",
"engines": {
"node": ">=20.x",
"pnpm": ">=8"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"@types/react": "^18.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
},
"patchedDependencies": {
"@rainbow-me/rainbowkit": "patches/@rainbow-me__rainbowkit.patch"
}
}
}