-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.79 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
{
"name": "root",
"private": true,
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter=!clarigen-docs",
"lint": "turbo run lint --continue",
"lint:fix": "eslint --fix packages/**/*.{ts,js} && prettier --write \"packages/**/*.{ts,js}\"",
"test": "turbo run test --continue",
"typecheck": "turbo run typecheck --continue",
"publish-packages": "pnpm build:packages && pnpm publish -r",
"publish-local": "pnpm build:packages && pnpm publish -r",
"publish-changesets": "pnpm build:packages && pnpm changeset publish",
"preinstall": "npx only-allow pnpm",
"demo-types": "pnpm --filter @clarigen/cli start",
"clarigen": "pnpm --filter @clarigen/cli start",
"dev:web": "pnpm --filter clarigen-docs dev"
},
"prettier": "@stacks/prettier-config",
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@stacks/eslint-config": "2.0.0",
"@stacks/prettier-config": "0.0.9",
"@types/node": "20.10.4",
"@typescript-eslint/parser": "^7.7.0",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.41.0",
"eslint-config-next": "13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^2.1.3",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-tailwindcss": "^3.12.0",
"husky": "^4.2.5",
"next": "14.2.2",
"prettier": "^2.8.4",
"shx": "^0.3.4",
"tslib": "^2.1.0",
"tsup": "^8.3.0",
"turbo": "1.2.5",
"typedoc": "0.25.13",
"typescript": "5.4.5",
"vite": "^5.4.8",
"vitest": "2.1.2"
},
"dependencies": {
"@changesets/cli": "^2.23.2",
"jsonfile": "^6.1.0"
},
"resolutions": {
"typescript": "5.4.5",
"whatwg-url": "^14.0.0"
},
"overrides": {
"whatwg-url": "^14.0.0"
}
}