-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.1 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
{
"name": "fepack",
"private": true,
"keywords": [
"fepack",
"frontend"
],
"repository": {
"type": "git",
"url": "https://github.com/tooooo1/fepack.git"
},
"license": "MIT",
"packageManager": "[email protected]",
"type": "module",
"workspaces": [
"configs/*",
"packages/*",
"websites/*"
],
"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",
"clean": "pnpm --filter \"./packages/**\" run clean",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"graph": "rimraf ./graph && mkdir graph && turbo run build --graph=graph/index.html",
"lint": "turbo run lint",
"lint:attw": "turbo run lint:attw",
"lint:monorepo": "sherif",
"lint:pack": "packlint sort -R",
"lint:pub": "turbo run lint:pub",
"preinstall": "corepack enable",
"prepack": "turbo run prepack",
"prepare": "husky install",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"type:check": "turbo run type:check --parallel"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.3",
"@changesets/cli": "^2.27.1",
"@fepack/eslint-config": "workspace:*",
"@fepack/eslint-config-js": "workspace:*",
"@fepack/eslint-config-ts": "workspace:*",
"@fepack/tsconfig": "workspace:*",
"@testing-library/dom": "^9.0.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/node": "^18.19.3",
"@vitest/browser": "^1.0.4",
"@vitest/coverage-istanbul": "^1.0.4",
"@vitest/ui": "^1.1.0",
"eslint": "^8.55.0",
"husky": "^8.0.3",
"jsdom": "^23.0.1",
"lint-staged": "^15.2.0",
"packlint": "^0.2.4",
"playwright": "^1.40.1",
"prettier": "^3.1.1",
"publint": "^0.2.6",
"rimraf": "^5.0.5",
"sherif": "^0.6.1",
"tsup": "^8.0.1",
"turbo": "latest",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.0.4"
}
}