-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 2 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
48
49
50
51
{
"name": "@typelaunch-turbo/main",
"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 && pnpm mono-lint",
"suite:ci": "FORCE_COLOR=1 turbo run cov format --color && pnpm mono-lint",
"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",
"mono-lint": "manypkg check",
"format": "FORCE_COLOR=1 turbo run format --color",
"mono-fix": "manypkg fix",
"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",
"typelaunch-generate": "degit ben-laird/typelaunch-turbo/typelaunch typelaunch"
},
"packageManager": "pnpm@8.4.0",
"dependencies": {
"@changesets/cli": "latest",
"@fast-check/vitest": "^0.0.3",
"@manypkg/cli": "^0.20.0",
"@typelaunch-turbo/eslint-config-typelaunch-turbo": "0.0.0",
"@typelaunch-turbo/tsconfig": "0.0.0",
"@types/eslint": "^8.21.3",
"@types/prettier": "^2.7.2",
"@vitest/coverage-c8": "latest",
"degit": "^2.8.4",
"open-cli": "^7.1.0",
"prettier": "latest",
"tsup": "latest",
"turbo": "latest",
"typescript": "latest",
"vite": "latest",
"vite-plugin-dts": "latest",
"vitest": "latest"
}
}