-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "turborepo",
"version": "0.0.3",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo run dev --filter=@micro-site/* --filter=@packages/proxy",
"dev-proxy-only": "turbo watch build --filter=@packages/proxy",
"start": "turbo run start",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "./scripts/release.sh",
"publish": "changeset tag && git push --follow-tags",
"deploy-single-microsite": "./scripts/deploy-to-prod.sh"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"changeset": "^0.2.6",
"prettier": "^3.2.5",
"turbo": "^2.0.4",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.5.1",
"workspaces": [
"microsites/*",
"packages/*"
],
"dependencies": {
"@changesets/cli": "^2.27.7",
"@heroicons/react": "^2.1.4",
"next": "^14.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.4"
}
}