-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "teiler",
"private": true,
"packageManager": "yarn@4.1.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "eslint packages/*/src",
"check-format": "prettier -c packages/**/src/*",
"dev": "turbo run dev",
"changeset:version": "changeset version && yarn install --mode=update-lockfile",
"changeset:publish": "changeset publish",
"storybook": "storybook dev -p 6005",
"storybook-packages": "turbo run storybook",
"wait": "wait-on tcp:6006 && wait-on tcp:6007"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@storybook/html-vite": "^8.1.1",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^9.9.0",
"playwright": "^1.48.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"storybook": "^8.1.1",
"turbo": "^2.0.14",
"typescript": "^5.5.4",
"vite": "^5.0.12",
"wait-on": "^7.2.0"
},
"dependencies": {
"@changesets/cli": "^2.27.1"
}
}