-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 890 Bytes
/
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
{
"name": "react-video",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "turbo run build && changeset publish",
"version-packages": "changeset version",
"clean": "rimraf packages/*/dist && rimraf packages/*/.turbo && rimraf **/**/node_modules rimraf **/**/package-lock.json rimraf **/**/.next rimraf **/**/.cache"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"prettier": "^3.2.5",
"turbo": "latest"
},
"packageManager": "pnpm@8.9.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"@types/node": "20.5.7",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
}
}