-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 KB
/
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
40
41
42
43
44
45
{
"name": "turbo-strapi-next-rtk",
"private": true,
"scripts": {
"build": "turbo build",
"start": "turbo run start",
"dev": "turbo dev",
"watch": "turbo run watch",
"types": "turbo types",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "turbo run clean"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"eslint": "8.57.0",
"turbo": "1.13.2",
"prettier": "3.2.5",
"rimraf": "5.0.1",
"typescript": "^5"
},
"resolutions": {
"@strapi/strapi": "4.22.1",
"@strapi/typescript-utils": "4.22.1",
"@strapi/plugin-i18n": "4.22.1",
"@strapi/plugin-users-permissions": "4.22.1",
"@types/node": "18.18.3",
"@types/react": "18.2.71",
"@types/react-dom": "18.2.22",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.2.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}