-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
36 lines (36 loc) · 916 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
33
34
35
36
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --concurrency 40",
"test": "echo \"no tests yet\"",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"publish-packages": "turbo run build lint && changeset version && changeset publish && git push --follow-tags origin main",
"postinstall": "patch-package"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@turbo/gen": "^1.9.7",
"eslint": "^8.46.0",
"eslint-config-custom": "*",
"prettier": "^2.5.1",
"react": "^18.2.0",
"tsup": "^7.2.0",
"turbo": "^1.10.12"
},
"name": "mod",
"license": "MIT",
"packageManager": "[email protected]",
"workspaces": [
"configs/*",
"examples/*",
"mods/*",
"packages/*",
"docs"
],
"dependencies": {
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0"
}
}