-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
64 lines (64 loc) · 1.85 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
{
"name": "create-expo-stack-repository",
"private": true,
"version": "0.0.0",
"description": "Root package for the create-expo-stack monorepo",
"repository": {
"type": "git",
"url": "https://github.com/roninoss/create-expo-stack.git"
},
"license": "MIT",
"workspaces": [
"cli",
"www",
"docs"
],
"scripts": {
"build": "turbo build",
"build:cli": "turbo build --filter create-expo-stack",
"build:www": "turbo build --filter create-expo-stack-landing",
"build:docs": "turbo build --filter create-expo-stack-docs",
"dl-contrib": "bun scripts/generate-contributors.ts",
"format": "eslint -c .eslintrc.js --fix \"**/*.{js,jsx,ts,tsx}\" && prettier \"**/*.{astro,css,ejs,js,json,jsx,md,mdx,mjs,ts,tsx,yaml,yml}\" --write",
"prepare": "is-ci || husky install"
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "none",
"printWidth": 120,
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@changesets/get-release-plan": "^3.0.17",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"bun-types": "^1.0.14",
"copyfiles": "^2.4.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^5.1.3",
"is-ci": "^3.0.1",
"lint-staged": "^12.5.0",
"octokit": "^3.1.2",
"prettier": "^3.1.0",
"turbo": "^1.11.3",
"typescript": "latest"
},
"packageManager": "[email protected]",
"dependencies": {
"@clack/prompts": "^0.7.0",
"expo": "latest",
"lucide-astro": "^0.395.0",
"picocolors": "^1.0.0",
"google-auth-library": "^9.11.0",
"googleapis": "^140.0.0"
}
}