generated from ben-laird/typelaunch-turbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.75 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
{
"private": true,
"scripts": {
"start": "FORCE_COLOR=1 turbo run start --color",
"dev": "FORCE_COLOR=1 turbo run dev --color",
"build:dev": "FORCE_COLOR=1 turbo run build:dev --color",
"build": "FORCE_COLOR=1 turbo run build --color",
"preview": "FORCE_COLOR=1 turbo run preview --color",
"suite": "FORCE_COLOR=1 turbo run test lint --color",
"suite:ci": "FORCE_COLOR=1 turbo run cov format --color",
"test": "FORCE_COLOR=1 turbo run test --color",
"test:watch": "FORCE_COLOR=1 turbo run test:watch --color",
"cov": "FORCE_COLOR=1 turbo run cov --color",
"cov:watch": "FORCE_COLOR=1 turbo run cov:watch --color",
"lint": "FORCE_COLOR=1 turbo run lint --color",
"format": "FORCE_COLOR=1 turbo run format --color",
"uncache": "turbo run uncache && rm -rf node_modules/.cache/turbo",
"clean": "turbo run clean && rm -rf node_modules",
"reinstall": "pnpm clean && pnpm i",
"reset": "pnpm clean && rm -rf pnpm-lock.yaml && pnpm i",
"change": "changeset",
"change:empty": "changeset --empty",
"review": "changeset version",
"release": "FORCE_COLOR=1 turbo run build --no-cache --color && changeset publish",
"postinstall": "pnpm build:dev"
},
"devDependencies": {
"@changesets/cli": "latest",
"@fast-check/vitest": "^0.0.3",
"@typelaunch-turbo/eslint-config-typelaunch-turbo": "workspace:*",
"@typelaunch-turbo/tsconfig": "workspace:*",
"@types/eslint": "^8.21.3",
"@types/prettier": "^2.7.2",
"@vitest/coverage-c8": "^0.29.7",
"open-cli": "^7.1.0",
"prettier": "latest",
"tsup": "latest",
"turbo": "latest",
"typescript": "latest",
"vite": "latest",
"vite-plugin-dts": "latest",
"vitest": "latest"
},
"packageManager": "[email protected]"
}