-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 997 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
37
38
39
{
"name": "next-server-thesme",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"apps/examples/*",
"apps/comparison/*"
],
"scripts": {
"build": "turbo build",
"change": "changeset add",
"dev": "turbo dev",
"findMismatches": "syncpack list-mismatches",
"fixMismatches": "syncpack fix-mismatches",
"format": "prettier --write .",
"postinstall": "$npm_execpath run findMismatches",
"lint": "turbo lint",
"showTests": "turbo showTests --continue",
"start": "turbo start",
"test": "turbo test",
"version": "changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@repo/config-eslint": "*",
"@repo/config-typescript": "*",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.6.5",
"syncpack": "^12.3.2",
"turbo": "latest"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}