-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 944 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": "deep-state",
"version": "0.0.0",
"private": true,
"prettier": "prettier-config-custom",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"*.{js,json}\" && turbo run format",
"format:check": "prettier --check \"*.{js,json}\" && turbo run format:check",
"test": "turbo test -- --run",
"test:types": "turbo test:types -- --run",
"typecheck": "turbo typecheck",
"publish-packages": "turbo run build && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"eslint-config-custom": "workspace:*",
"prettier": "^2.8.8",
"prettier-config-custom": "workspace:*",
"turbo": "^1.9.3"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "pnpm@7.9.4"
}