-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 2.07 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
44
{
"name": "storyshots",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"local": "./batect --override-image storyshots=local-storyshots",
"start": "pnpm build && pnpm local storyshots",
"start:debug": "pnpm build && DEBUG=true pnpm local storyshots",
"start:single": "pnpm build && STORYSHOTS_STORY=example-button--primary pnpm local storyshots",
"start:list": "pnpm build && pnpm local storyshots-list",
"start:local": "pnpm build && pnpm local --config-vars-file=batect.target-local.yml storyshots",
"start:update": "pnpm build && pnpm local storyshots-update",
"start:update:debug": "pnpm build && DEBUG=true pnpm local storyshots-update",
"compile": "tsc --incremental -p runtime/tsconfig.json && tsc --incremental -p runtime-logs-server/tsconfig.json",
"build": "docker build -t local-storyshots -f Dockerfile.storyshots .",
"test:local": "pnpm build && IMAGE=local-storyshots pnpm test",
"test": "bash shellspec --fail-fast",
"runtime:logs-server": "node runtime-logs-server/out/serve.js",
"runtime:findStories:debug": "playwright test -c runtime/out --config=/storyshots/runtime/out/playwright.config.findStories.js",
"runtime:findStories": "pnpm --silent runtime:findStories:debug > /dev/null 2>&1",
"runtime:start:debug": "playwright test -c runtime/out --config=/storyshots/runtime/out/playwright.config.storyshots.js",
"runtime:start": "pnpm --silent runtime:start:debug > /dev/null 2>&1",
"runtime:updateSnapshots:debug": "pnpm runtime:start:debug --update-snapshots",
"runtime:updateSnapshots": "pnpm --silent runtime:updateSnapshots:debug > /dev/null 2>&1"
},
"type": "module",
"devDependencies": {
"@playwright/test": "^1.37.1",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/node": "^16.18.10",
"axios": "^1.5.0",
"body-parser": "^1.20.2",
"chalk": "^5.3.0",
"express": "^4.18.2",
"stdout-update": "^4.0.0",
"tasktree-cli": "^8.0.0",
"typescript": "^5.1.6"
}
}