-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 947 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"build:math-helpers": "turbo run build --filter @nankio/math-helpers",
"build:react-ui": "turbo run build --filter @nankio/react-ui",
"clean": "turbo run clean",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md,json,js}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"prerelease": "turbo run build lint test",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@turbo/gen": "^1.9.7",
"eslint": "^7.32.0",
"eslint-config-custom": "workspace:*",
"prettier": "^2.5.1",
"turbo": "latest"
},
"repository": "https://github.com/nanqianglin/my-turborepo",
"packageManager": "pnpm@7.15.0",
"name": "my-turborepo"
}