-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.17 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
{
"name": "create-expo-forge",
"version": "0.2.0",
"type": "module",
"description": "Production-grade template for Expo apps.",
"bin": {
"create-expo-forge": "dist/index.js"
},
"files": [
"dist/index.js"
],
"license": "MIT",
"homepage": "https://expo-forge.com",
"repository": {
"type": "git",
"url": "git+https://github.com/abed42/expo-forge.git"
},
"keywords": [
"expo",
"react-native",
"template",
"turborepo",
"starter"
],
"publishConfig": {
"access": "public"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "bun@1.3.10",
"overrides": {
"react": "19.2.3",
"react-dom": "19.2.3"
},
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"lint:root": "biome check .",
"typecheck": "turbo typecheck",
"test": "turbo test",
"test:scripts": "vitest run scripts",
"fix": "biome check --write ."
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@repo/typescript-config": "workspace:*",
"@types/node": "^25.3.5",
"tsup": "^8.5.1",
"turbo": "^2.8.14",
"typescript": "~6.0.3",
"vitest": "^4.1.10"
},
"dependencies": {
"@clack/prompts": "^1.7.0",
"commander": "^15.0.0"
}
}