-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "openlane-ui",
"version": "1.0.0",
"description": "A monorepo for openlane UI apps and supporting libraries",
"repository": "git@github.com:theopenlane/openlane-ui.git",
"author": "openlane <info@theopenlane.io>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev --parallel",
"type-check": "turbo type-check",
"clean": "rm -rf node_modules/** && rm -rf ./apps/console/.next && rm -rf ./apps/console/node_modules && rm -rf ./apps/storybook/.next && rm -rf ./apps/storybook/node_modules && turbo clean",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"dotenv-cli": "latest",
"eslint": "latest",
"prettier": "latest",
"prettier-plugin-tailwindcss": "latest",
"turbo": "1.13"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.1.3",
"workspaces": [
"apps/*",
"packages/*"
],
"trustedDependencies": [
"core-js"
],
"resolutions": {
"react": "18.3.1"
},
"peerDependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"@react-pdf/renderer": "^4.0.0"
}
}