forked from toss/suspensive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.53 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "suspensive",
"private": true,
"keywords": [
"suspensive",
"react",
"react-query"
],
"homepage": "https://suspensive.org",
"bugs": "https://github.com/suspensive/react/issues",
"repository": {
"type": "git",
"url": "https://github.com/suspensive/react.git"
},
"license": "MIT",
"packageManager": "pnpm@8.15.2",
"type": "module",
"scripts": {
"build": "turbo run build",
"build:watch": "turbo run build:watch --parallel",
"changeset": "changeset",
"changeset:publish": "pnpm prepack && changeset publish",
"changeset:version": "changeset version && pnpm i --lockfile-only",
"ci:all": "pnpm ci:attw && pnpm ci:eslint && pnpm ci:lighthouse && pnpm ci:publint && pnpm ci:sherif && pnpm ci:type && pnpm test && pnpm build",
"ci:attw": "turbo run ci:attw",
"ci:eslint": "turbo run ci:eslint",
"ci:lighthouse": "lhci autorun",
"ci:publint": "turbo run ci:publint",
"ci:sherif": "sherif --ignore-package \"./examples/*\" --ignore-package \"./websites/*\" --ignore-package \"./docs/*\"",
"ci:type": "turbo run ci:type",
"clean": "turbo run clean",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"graph": "rimraf ./graph && mkdir graph && turbo run build --graph=graph/index.html",
"packlint": "packlint sort -R",
"preinstall": "corepack enable",
"prepack": "turbo run prepack",
"prepare": "husky install",
"start": "turbo run start",
"test": "turbo run test",
"test:watch": "turbo run test:watch --parallel"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@lhci/cli": "^0.13.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^18.19.21",
"@vitest/browser": "^1.3.1",
"@vitest/coverage-istanbul": "^1.3.1",
"@vitest/ui": "^1.3.1",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"ms": "3.0.0-canary.1",
"packlint": "^0.2.4",
"playwright": "^1.42.1",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"publint": "^0.2.7",
"rimraf": "^5.0.5",
"sherif": "^0.8.1",
"tsup": "^8.0.2",
"turbo": "latest",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^1.3.1"
}
}