-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 812 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 812 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"clean": "turbo run clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"ci": "turbo run lint && turbo run test && turbo run build",
"changeset": "changeset",
"version": "changeset version",
"release": "turbo run publish && changeset publish",
"test": "turbo run test",
"pages": "turbo run build --filter=demo"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@turbo/gen": "^1.13.2",
"eslint": "^7.32.0",
"jsdom": "^22.1.0",
"prettier": "^2.8.8",
"turbo": "latest",
"vitest": "^0.34.6"
},
"packageManager": "pnpm@8.8.0"
}