forked from vitejs/vite-plugin-react-swc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "@vitejs/plugin-react-swc-monorepo",
"version": "3.2.0",
"type": "module",
"private": true,
"scripts": {
"dev": "tsx scripts/bundle.ts --dev",
"build": "tsx scripts/bundle.ts",
"test": "playwright test",
"prettier": "pnpm prettier-ci --write",
"prettier-ci": "prettier --cache --ignore-path=.gitignore --check '**/*.{js,jsx,ts,tsx,html,css,json,md,yml}'",
"ci": "tsc && pnpm prettier-ci && pnpm build && cd playground && tsc && cd .. && pnpm test",
"release": "pnpm build && tsx scripts/release.ts"
},
"prettier": {
"trailingComma": "all"
},
"dependencies": {
"@swc/core": "^1.3.35"
},
"peerDependencies": {
"vite": "^4"
},
"devDependencies": {
"@playwright/test": "^1.30.0",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.13.0",
"@vitejs/release-scripts": "^1.1.0",
"esbuild": "^0.17.7",
"fs-extra": "^11.1.0",
"picocolors": "^1.0.0",
"prettier": "^2.8.4",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"vite": "^4.1.1"
}
}