-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 3.65 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "template-web-app-react",
"version": "0.6.0",
"private": true,
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0 <23.0.0"
},
"scripts": {
"prepare": "husky install",
"build": "turbo run build --no-daemon",
"deploy": "turbo run deploy --no-daemon",
"clean": "turbo run clean --no-daemon && rimraf output",
"clean:all": "turbo run clean:all --no-daemon",
"dev": "turbo run dev --no-daemon --concurrency 20",
"dev:mocks": "turbo run dev:mocks --no-daemon --concurrency 20",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint --no-daemon",
"lint:fix": "turbo run lint:fix --no-daemon",
"test": "turbo run test --parallel --no-daemon",
"test:e2e": "concurrently -k -s \"command-e2e:headless\" -n \"e2e:headless,e2e:env\" -c \"magenta,blue\" \"pnpm test:e2e:headless\" \"pnpm test:e2e:env\"",
"test:e2e:headless": "pnpm wait-on tcp:5173 && pnpm --filter=e2e test:e2e",
"test:e2e:env": "turbo run test:e2e:env --parallel --no-daemon",
"test:unit": "turbo run test:unit --parallel --no-daemon",
"test:unit:coverage": "turbo run test:unit:coverage --parallel --no-daemon",
"test:unit:coverage:ci": "turbo run test:unit:coverage:ci --parallel --no-daemon",
"mocks": "pnpm --filter=mock mocks",
"storybook": "pnpm storybook:dev:combined",
"storybook:dev:combined": "cross-env STORYBOOK_MODE=combined turbo run storybook:dev --filter=web --no-daemon",
"storybook:dev:web": "turbo run storybook:dev --filter=web --no-daemon",
"storybook:dev:ui": "turbo run storybook:dev --filter=shared-ui --no-daemon",
"storybook:build": "turbo run storybook:build --parallel --no-daemon",
"storybook:publish": "turbo run storybook:publish --parallel --no-daemon",
"storybook:move": "pnpm storybook:move:web && pnpm storybook:move:ui",
"storybook:move:web": "turbo run storybook:move --filter=web --no-daemon",
"storybook:move:ui": "turbo run storybook:move --filter=shared-ui --no-daemon"
},
"dependencies": {
"@emotion/core": "11.0.0",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@fontsource/rubik": "5.1.0",
"@heroicons/react": "2.1.5",
"@tanstack/react-query": "5.60.5",
"autoprefixer": "10.4.20",
"clsx": "2.1.1",
"concurrently": "9.1.0",
"daisyui": "4.12.14",
"immer": "10.1.1",
"jotai": "2.10.2",
"jotai-effect": "1.0.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-intl": "6.8.8",
"wait-on": "8.0.1",
"yup": "1.4.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/types": "19.5.0",
"@faker-js/faker": "9.0.1",
"@mocks-server/main": "4.1.0",
"@storybook/builder-vite": "8.3.2",
"@storybook/react": "8.3.2",
"@storybook/react-vite": "8.3.2",
"@storybook/test": "8.3.2",
"@storybook/test-runner": "0.19.1",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/typography": "0.5.15",
"@types/node": "20.16.5",
"@types/react": "18.3.8",
"@types/react-dom": "18.3.0",
"cross-env": "7.0.3",
"http-server": "14.1.1",
"husky": "9.1.6",
"move-cli": "2.0.0",
"nyc": "17.1.0",
"playwright": "1.47.1",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.6",
"rimraf": "6.0.1",
"start-server-and-test": "2.0.8",
"storybook": "8.3.2",
"tailwindcss": "3.4.12",
"turbo": "2.1.2",
"typescript": "5.6.2",
"usehooks-ts": "3.1.0",
"utility-types": "3.11.0",
"vite": "6.0.9",
"vitest": "2.1.9"
},
"pnpm": {
"overrides": {
"vite": "6.1.0"
}
}
}