-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.35 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "root",
"private": true,
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"changeset:version": "changeset version",
"dev": "turbo run dev",
"dev:smoothie": "turbo run dev --filter smoothie",
"enter:beta": "changeset pre enter beta",
"exit:beta": "changeset pre exit",
"format": "prettier --write \"**/*.{ts,md,js,cjs}\"",
"lint": "pnpm lint:turbo && pnpm lint:js",
"lint:js": "eslint --ext .{ts,js} ./ --fix --no-error-on-unmatched-pattern",
"lint:turbo": "turbo run lint",
"release": "pnpm build && pnpm release:only",
"release:only": "changeset publish --registry=https://registry.npmjs.com/",
"test": "vitest"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.1",
"@turbo/gen": "1.10.3",
"@typescript-eslint/eslint-plugin": "5.59.11",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard-with-typescript": "35.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"jsdom": "22.1.0",
"prettier": "2.8.8",
"turbo": "1.10.3",
"typescript": "5.1.3",
"vite": "4.3.9",
"vitest": "0.32.2"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}