forked from souporserious/renoun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.43 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
{
"name": "mdxts",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:site": "pnpm dev --filter=mdxts --filter=site",
"dev:examples": "pnpm dev --filter=mdxts --filter=@examples/*",
"test": "turbo run test",
"format": "prettier --write '**/**/*.{js,ts,tsx,json,css}'",
"ci:version": "pnpm changeset version && pnpm install --no-frozen-lockfile && git add .",
"ci:publish": "pnpm build && pnpm publish -r && pnpm changeset tag",
"clean": "node -e \"(function rm(directory) { ['.next', '.turbo', 'node_modules', 'dist'].includes(path.basename(directory)) ? fs.rmSync(directory, { recursive: true, force: true }) : fs.existsSync(directory) && fs.statSync(directory).isDirectory() && fs.readdirSync(directory).forEach(filePath => rm(path.join(directory, filePath))); })('.');\""
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@swc/core": "^1.4.4",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next": "14.1.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
}
}