forked from tdsoftpl/cool-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "cool-stack",
"description": "Ice-cool 🧊 Remix + Directus starter template.",
"version": "1.0.0",
"repository": "https://github.com/tdsoftpl/cool-stack.git",
"private": true,
"license": "MIT",
"workspaces": [
"api",
"packages/*",
"page"
],
"scripts": {
"bootstrap": "yarn && turbo run generate:css && turbo run build",
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"clean": "turbo run clean",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"test": "turbo run test --filter=*/page --filter=*/ui --no-cache --only",
"graph": "turbo run build --graph"
},
"devDependencies": {
"@tdsoft/prettier-config": "^1.0.2",
"prettier": "2.8.4",
"turbo": "latest"
},
"resolutions": {
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14"
},
"packageManager": "yarn@1.22.19"
}