-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 943 Bytes
/
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
{
"private": true,
"name": "expo-atlas-monorepo",
"version": "0.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"postinstall": "bun run --filter expo-atlas build",
"build": "bun run --filter 'expo-atlas*' build",
"build:ui": "bun run --filter expo-atlas-ui build",
"clean": "bun run --filter 'expo-atlas*' clean",
"lint": "bun run --filter 'expo-atlas*' lint",
"start": "bun run --filter 'expo-atlas*' start",
"test": "bun run --filter 'expo-atlas*' test",
"typecheck": "bun run --filter 'expo-atlas*' typecheck"
},
"devDependencies": {
"@types/bun": "^1.0.8",
"@types/node": "^20.11.26",
"eslint": "^8.57.0",
"eslint-config-universe": "^13.0.0",
"expo-module-scripts": "^4.0.2",
"prettier": "^3.2.5",
"typescript": "^5.5.4"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5"
}
}