-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1009 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1009 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "frontend-monorepo",
"private": true,
"engines": {
"node": ">=14.15"
},
"packageManager": "pnpm@8.12.1",
"scripts": {
"preinstall": "npx only-allow pnpm",
"sync": "turbo run sync",
"clean": "turbo run clean",
"build": "turbo run build",
"lp": "turbo run build --filter=lp",
"lint": "turbo run lint",
"dev": "turbo run dev --parallel",
"preview": "turbo run preview",
"codegen": "turbo run codegen",
"storybook": "turbo run storybook",
"build:storybook": "turbo run build:storybook",
"test": "turbo run test",
"test:open": "turbo run test:open"
},
"devDependencies": {
"@bond-protocol/eslint-config-custom": "workspace:*",
"@bond-protocol/tsconfig": "workspace:*",
"eslint": "^8.17.0",
"prettier": "^2.7.0",
"prettier-plugin-tailwindcss": "^0.1.11",
"turbo": "^2.4.4"
},
"dependencies": {
"@changesets/cli": "^2.28.1",
"date-fns": "2.30"
},
"resolutions": {
"graphql": "16.5.0"
}
}