-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.95 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
{
"name": "turbo-starter",
"private": true,
"scripts": {
"dev": "dotenv -- turbo dev --no-daemon --env-mode=loose",
"dev-api": "dotenv -- turbo dev --no-daemon --env-mode=loose --filter=api",
"dev-web": "dotenv -- turbo dev --no-daemon --env-mode=loose --filter=web",
"dev-web-electron": "dotenv -- turbo dev:electron --no-daemon --env-mode=loose --filter=web",
"dev-nuxt": "dotenv -- turbo dev --no-daemon --env-mode=loose --filter=web-nuxt",
"dev-mobile": "dotenv -- turbo dev --no-daemon --env-mode=loose --filter=mobile",
"build": "dotenv -- turbo build --no-daemon --env-mode=loose",
"build-api": "dotenv -- turbo build --no-daemon --env-mode=loose --filter=api",
"build-web": "dotenv -- turbo build --no-daemon --env-mode=loose --filter=web",
"build-web-electron": "dotenv -- turbo build:electron --no-daemon --env-mode=loose --filter=web",
"build-nuxt": "dotenv -- turbo build --no-daemon --env-mode=loose --filter=web-nuxt",
"build-mobile": "dotenv -- turbo build --no-daemon --env-mode=loose --filter=mobile",
"start": "dotenv -- turbo start --no-daemon --env-mode=loose",
"start-api": "dotenv -- turbo start --no-daemon --env-mode=loose --filter=api",
"start-web": "dotenv -- turbo start --no-daemon --env-mode=loose --filter=web",
"start-nuxt": "dotenv -- turbo start --no-daemon --env-mode=loose --filter=web-nuxt",
"mobile-android": "dotenv -- turbo android --no-daemon --env-mode=loose --filter=mobile",
"mobile-ios": "dotenv -- turbo ios --no-daemon --env-mode=loose --filter=mobile",
"test": "dotenv -- turbo test --no-daemon --env-mode=loose",
"lint": "turbo lint --no-daemon --env-mode=loose",
"clean": "turbo clean --no-daemon --env-mode=loose"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@turbo/gen": "^2.0.11",
"cpx": "^1.5.0",
"dotenv-cli": "^7.4.2",
"rimraf": "^6.0.1",
"turbo": "^2.0.11"
}
}