-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "turbo-rn-nextjs",
"version": "0.0.0",
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.5.1",
"eslint-config-custom": "*",
"jest": "^26.6.3",
"jest-date-mock": "^1.0.8",
"jest-junit": "^13.2.0",
"prettier": "latest",
"ts-jest": "^26.5.6",
"json-server": "^0.17.1",
"turbo": "latest"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"private": true,
"scripts": {
"android:build": "yarn workspace mobile android",
"android:start": "yarn workspace mobile start",
"api": "json-server -p 3001 -w db.json",
"clean": "yarn clean:npm && yarn clean:mobile && yarn && yarn ios:pods",
"clean:android": "yarn workspace mobile clean:android",
"clean:ios": "yarn workspace mobile clean:ios",
"clean:mobile": "yarn workspace mobile clean",
"clean:npm": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock && yarn",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"ios:build": "yarn workspace mobile ios",
"ios:pods": "yarn workspace mobile pods",
"ios:start": "yarn workspace mobile start",
"lint": "turbo run lint",
"lintfix": "turbo run lint -- --fix",
"test": "turbo run test",
"tsc": "turbo run tsc",
"web:build": "turbo run build",
"web:dev": "turbo run dev",
"web:start": "turbo run start"
},
"workspaces": [
"apps/*",
"domain/*",
"packages/*"
]
}