-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 926 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 926 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
29
30
31
32
33
34
35
36
{
"name": "twist-turbo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"lint": "turbo run lint",
"format": "turbo run format",
"dev": "turbo run dev",
"build": "turbo run build",
"preview": "turbo run preview",
"real-build-storybook": "turbo run real-build-storybook",
"storybook": "turbo run storybook",
"publish-packages": "turbo run build lint test && changeset version && changeset publish",
"e2e": "turbo run e2e",
"e2e-smoke": "turbo run e2e-smoke",
"e2e-mobile": "turbo run e2e-mobile"
},
"dependencies": {
"eslint": "9.21.0",
"eslint-config-custom": "workspace:*",
"prettier": "3.5.2",
"prettier-plugin-svelte": "3.3.3",
"turbo": "2.4.4"
},
"engines": {
"node": ">=22.16.0"
},
"packageManager": "pnpm@10.5.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"svelte-preprocess"
]
}
}