-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 761 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 761 Bytes
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": "@mintuz/marvel-root",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"build:watch": "turbo run build:watch",
"dev": "turbo run dev --parallel",
"check:types": "turbo run check:types --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "yarn build && yarn test && yarn changeset publish"
},
"devDependencies": {
"eslint": "7.32.0",
"prettier": "^2.5.1",
"turbo": "1.2.5"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "yarn@1.22.15",
"dependencies": {
"@changesets/cli": "^2.22.0"
}
}