-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
34 lines (34 loc) · 887 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
{
"name": "root",
"private": true,
"version": "0.0.0",
"author": "Horus Lugo <[email protected]>",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"build:pwa": "turbo run build --filter=pwa",
"build:ios": "turbo run build --filter=ios",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"typecheck": "turbo run typecheck",
"locales-coverage": "node scripts/build-locales-coverage.js",
"locales-coverage:description": "node scripts/locales-coverage-description.js"
},
"dependencies": {
"turbo": "1.10.7"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22"
},
"pnpm": {
"overrides": {
"react": "^18",
"react-dom": "^18",
"@types/react": "^18",
"@types/react-dom": "^18"
}
}
}