-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
31 lines (31 loc) · 1.08 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
{
"private": true,
"scripts": {
"dev": "dotenv -e .env.development -- turbo run dev --parallel --no-daemon",
"build": "dotenv -e .env.production -- turbo run build --no-daemon",
"analyze": "dotenv -e .env.production -- turbo run analyze --no-daemon",
"build:production": "dotenv -e .env.production -- turbo run build --no-daemon",
"build:development": "dotenv -e .env.development -- turbo run build --no-daemon",
"generate": "dotenv -e .env.production -- turbo run generate --no-daemon",
"generate:production": "dotenv -e .env.production -- turbo run generate --no-daemon",
"generate:development": "dotenv -e .env.development -- turbo run generate --no-daemon",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"commit": "cz"
},
"devDependencies": {
"dotenv-cli": "^7.2.1",
"turbo": "^1.10.12",
"commitizen": "4.3.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"vue": "3.4.15"
},
"name": "my-turborepo",
"packageManager": "[email protected]"
}