-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.62 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "securerpc-docs",
"version": "0.0.4",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prod": "NODE_ENV='production' npx next build",
"inspect": "NODE_OPTIONS='--inspect' next dev",
"script:populate-git-env:print": ". ./scripts/populate-git-env.sh && echo 'SHA: '${GIT_COMMIT_SHA} && echo 'REF (current branch/tag): '${GIT_COMMIT_REF} && echo 'TAGS: '${GIT_COMMIT_TAGS}",
"git:getReleasesAndTags": "git tag --points-at HEAD | tr '\\r\\n' ' '",
"git:getCommitSHA": "git rev-parse HEAD",
"git:getCommitSHA:short": "git rev-parse --short HEAD",
"git:getCommitRef": "git symbolic-ref HEAD",
"start:otel-verbose": "NEXT_OTEL_VERBOSE=1 next start"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.55.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.55.0",
"@opentelemetry/instrumentation": "^0.55.0",
"@opentelemetry/sdk-logs": "^0.55.0",
"@opentelemetry/sdk-trace-node": "^1.28.0",
"@radix-ui/react-slot": "^1.0.2",
"@segment/analytics-node": "^1.1.3",
"@vercel/analytics": "^1.4.1",
"@vercel/otel": "^1.10.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"lucide-react": "^0.295.0",
"next": "^14.2.18",
"nextra": "^3.2.4",
"nextra-theme-docs": "^3.2.4",
"posthog-node": "^4.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@mdx-js/react": "^3.0.0",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.9.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"autoprefixer": "^10.4.16",
"eslint": "^8.57.1",
"eslint-config-next": "^14.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"postcss": "^8.4.31",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.15",
"typescript": "^5.2.2"
},
"nextBundleAnalysis": {
"budget": 460800,
"budgetPercentIncreaseRed": 25,
"minimumChangeThreshold": 0,
"showDetails": true
},
"browserslist": {
"production": [
">0.3%",
"not dead",
"not op_mini all",
"not IE > 0",
"not samsung 4",
"not and_uc 12.12"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 2 Edge major versions ",
"last 2 iOS major versions ",
"not iOS 12.5"
]
}
}