-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 758 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 758 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
{
"name": "formiz",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"publish-packages": "turbo run build lint test && changeset publish",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test",
"test:ui": "turbo run test:ui",
"coverage": "turbo run coverage"
},
"devDependencies": {
"@changesets/cli": "2.26.0",
"prettier": "2.8.3",
"turbo": "latest",
"typescript": "4.9.4",
"@trivago/prettier-plugin-sort-imports": "4.0.0"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}