-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.54 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
{
"name": "storybook-framework-qwik-repo",
"version": "0.0.0",
"private": true,
"description": "",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"//test": "start storybook, then when the port is available, start tests of all storybook stories",
"test": "concurrently --kill-others \"yarn workspace qwik-app storybook --no-open\" \"wait-on http://localhost:6006 && yarn workspace qwik-app test-storybook\"",
"//dev": "start tsc build/watch, then when the files are available the first time, start storybook in the app (qwik-lib is less commonly used)",
"dev": "concurrently \"yarn watch\" \"wait-on ./packages/storybook-framework-qwik/dist/index.js && yarn workspace qwik-app storybook\"",
"watch": "yarn workspace storybook-framework-qwik watch",
"build": "yarn workspace storybook-framework-qwik build",
"lint-all": "yarn workspaces foreach run fmt.check && yarn workspaces foreach run lint",
"storybook": "yarn workspace qwik-app storybook",
"fmt-all": "yarn workspaces foreach run fmt",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"storybook.build": "yarn workspace qwik-app storybook.build"
},
"workspaces": [
"packages/*"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2",
"prettier": "^3.2.5",
"vercel": "^32.7.2",
"wait-on": "^7.2.0"
},
"dependencies": {
"@builder.io/qwik": "1.4.1",
"@builder.io/qwik-city": "1.4.1",
"undici": "6.6.2"
},
"packageManager": "[email protected]"
}