forked from evoluhq/evolu
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·34 lines (34 loc) · 939 Bytes
/
package.json
File metadata and controls
executable file
·34 lines (34 loc) · 939 Bytes
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": "@evolu/monorepo",
"scripts": {
"dev": "turbo dev --concurrency=13",
"build": "turbo build",
"start": "turbo start --concurrency=13",
"lint": "turbo lint",
"test": "turbo test",
"clean": "turbo clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"version": "changeset version && pnpm install --no-frozen-lockfile && pnpm format",
"release": "pnpm run build && changeset publish",
"ios": "cd apps/native && pnpm ios",
"android": "cd apps/native && pnpm android"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"eslint": "^8.52.0",
"eslint-config-evolu": "workspace:*",
"prettier": "^3.0.3",
"turbo": "^1.10.16"
},
"packageManager": "pnpm@8.6.6",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"expo-modules-*",
"typescript"
]
}
}
}