-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 876 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": "turborepo-sandbox",
"description": "An opinionated monorepo template/starting point",
"version": "0.0.0",
"license": "MIT",
"private": true,
"author": "Michael Schwobe <[email protected]> (http://michaelschwobe.com)",
"repository": "github:michaelschwobe/turborepo-sandbox",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"clean": "turbo run clean && rm -rf node_modules",
"lint": "turbo run lint",
"format": "prettier '**/*' --write --ignore-unknown",
"test": "turbo run test",
"storybook": "turbo run storybook",
"dev": "turbo run dev --no-cache --parallel --continue",
"build": "turbo run build"
},
"dependencies": {},
"devDependencies": {
"prettier": "^2.7.1",
"turbo": "latest"
},
"engines": {
"node": ">=16",
"npm": ">=8.0.0"
},
"packageManager": "[email protected]"
}