This repository was archived by the owner on Jan 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.47 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.47 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"msw": {
"workerDirectory": ".storybook\\public"
},
"name": "@storiny/monorepo",
"packageManager": "yarn@1.22.19",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "dotenv -c -- concurrently --raw \"docker-compose up -d\" \"turbo run dev --color --parallel\"",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx}\"",
"storybook:dev": "dotenv -c -- storybook dev -p 6006 --no-open",
"storybook:build": "storybook build",
"test": "jest --w 2",
"test:e2e": "dotenv -v E2E_PORT=3000 -- playwright test",
"test:e2e:chromium": "dotenv -v E2E_PORT=3000 -v E2E_BROWSER=chromium -- playwright test --project=\"chromium\"",
"test:e2e:firefox": "dotenv -v E2E_PORT=3000 -v E2E_BROWSER=firefox -- playwright test --project=\"firefox\"",
"test:e2e:webkit": "dotenv -v E2E_PORT=3000 -v E2E_BROWSER=webkit -- playwright test --project=\"webkit\"",
"build:web": "docker build --platform linux/arm64 -t storiny_web ."
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@dotenv-run/cli": "^1.1.0",
"@grpc/grpc-js": "^1.8.15",
"@playwright/test": "^1.37.1",
"@storiny/eslint-config": "*",
"@storybook/addon-a11y": "^8.5.3",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-interactions": "^8.5.3",
"@storybook/addon-links": "^8.5.3",
"@storybook/addon-storysource": "^8.5.3",
"@storybook/addon-styling": "^1.3.7",
"@storybook/addons": "^7.6.17",
"@storybook/blocks": "^8.5.3",
"@storybook/manager-api": "^8.5.3",
"@storybook/nextjs": "^8.5.3",
"@storybook/react": "^8.5.3",
"@storybook/theming": "^8.5.3",
"@swc/core": "^1.3.61",
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.1",
"@types/lodash.throttle": "^4.1.7",
"@types/node": "^20.3.2",
"concurrently": "^8.2.0",
"dotenv-cli": "^7.2.1",
"eslint": "^8.51.0",
"jest": "^29.5.0",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^29.5.0",
"msw": "^1.2.1",
"msw-storybook-addon": "^1.10.0",
"nanoid": "3",
"next": "^15.1.6",
"nodemon": "^2.0.22",
"pexels": "^1.4.0",
"prettier": "^3.0.3",
"prettier-plugin-organize-attributes": "^1.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "^8.5.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"turbo": "2.4.0",
"typescript": "^5.2.2",
"webpack": "^5.88.0",
"y-websocket-server": "^1.0.2"
}
}