-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.87 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
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
73
74
75
{
"name": "snext",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vocab compile --watch & next dev",
"build": "next build",
"start": "next start",
"lint": "pnpm format-check && next lint",
"format": "prettier --cache --write '**/*.{js,ts,tsx,md,json}' && eslint --cache --fix .",
"format-check": "prettier --cache --list-different '**/*.{js,ts,tsx,md,json}'",
"test": "jest --coverage",
"test-watch": "pnpm test --watch",
"test-e2e": "playwright test ./src/e2e/*.test.ts",
"test-e2e-ui": "pnpm test-e2e --ui",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook --coverage",
"test-storybook-watch": "test-storybook --watch",
"test-storybook-ci": "pnpm dlx concurrently -k -s first -n \"Storybook,Test\" -c \"magenta,blue\" \"pnpm storybook build --quiet && pnpm dlx http-server storybook-static --port 6006 --silent\" \"pnpm dlx wait-on tcp:127.0.0.1:6006 && pnpm test-storybook --ci\"",
"coverage-report-create": "cp coverage/storybook/coverage-storybook.json coverage/coverage-storybook.json && pnpm dlx nyc report --reporter=html -t coverage --report-dir coverage",
"coverage-report-open": "open coverage/index.html",
"vocab-compile": "vocab compile"
},
"dependencies": {
"@types/node": "20.8.2",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.10",
"@vocab/core": "1.4.0",
"@vocab/react": "1.1.7",
"braid-design-system": "32.12.0",
"next": "13.5.4",
"next-i18n-router": "3.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.2.2"
},
"devDependencies": {
"@playwright/test": "1.38.1",
"@storybook/addon-a11y": "7.4.6",
"@storybook/addon-coverage": "0.0.9",
"@storybook/addon-essentials": "7.4.6",
"@storybook/addon-interactions": "7.4.6",
"@storybook/addon-links": "7.4.6",
"@storybook/addon-onboarding": "1.0.8",
"@storybook/blocks": "7.4.6",
"@storybook/jest": "0.2.3",
"@storybook/nextjs": "7.4.6",
"@storybook/react": "7.4.6",
"@storybook/test-runner": "0.13.0",
"@storybook/testing-library": "0.2.2",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.5",
"@vanilla-extract/next-plugin": "2.3.1",
"@vocab/cli": "1.3.7",
"concurrently": "8.2.1",
"eslint": "8.50.0",
"eslint-config-next": "13.5.4",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jest-dom": "5.1.0",
"eslint-plugin-playwright": "0.16.0",
"eslint-plugin-storybook": "0.6.14",
"eslint-plugin-testing-library": "6.0.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lefthook": "1.5.0",
"nyc": "15.1.0",
"prettier": "3.0.3",
"storybook": "7.4.6",
"storybook-addon-theme-provider": "0.1.10",
"tsconfig-paths-webpack-plugin": "4.1.0",
"wait-on": "7.0.1"
}
}