-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 897 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": "iniz",
"version": "0.0.0",
"private": true,
"workspaces": [
"website",
"examples/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --filter=./packages/* --parallel",
"format": "prettier --write --cache \"**/*.{ts,tsx,md,mdx}\"",
"lint": "turbo run lint && prettier --check \"**/*.{ts,tsx,md,mdx}\"",
"test": "turbo run test",
"changeset": "changeset",
"publish-packages": "turbo run build lint && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.24.4",
"@iniz/eslint-config-internal": "workspace:*",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"turbo": "latest"
},
"engines": {
"node": ">=18.10.0"
},
"dependencies": {},
"packageManager": "[email protected]"
}