-
Notifications
You must be signed in to change notification settings - Fork 4
/
packageold.json
48 lines (48 loc) · 1.23 KB
/
packageold.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
{
"name": "open-web-container",
"private": true,
"version": "0.1.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"test": "turbo run test",
"lint": "turbo run lint",
"clean": "turbo run clean && rimraf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"typecheck": "turbo run typecheck",
"playground": "turbo run dev --filter=playground",
"core:build": "turbo run build --filter=@open-web-container/core",
"core:dev": "turbo run dev --filter=@open-web-container/core",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=@open-web-container/core && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"turbo": "^2.3.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yml}": [
"prettier --write"
]
}
}