-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.67 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
101
102
103
104
105
106
{
"name": "root",
"private": true,
"type": "module",
"scripts": {
"clean": "pnpm nx run-many --target=clean --all",
"clean:node_modules": "pnpm nx run-many --target=clean:node_modules --all && rimraf node_modules",
"prepare": "husky",
"check-types:all": "pnpm nx run-many --target=check-types --all",
"lint:all": "pnpm nx run-many --target=lint:nx --all",
"affected:build": "pnpm nx affected --target=build",
"affected:check-types": "pnpm nx affected --target=check-types",
"affected:lint": "pnpm nx affected --target=lint:nx",
"affected:test": "pnpm nx affected --target=test",
"affected:storybook": "pnpm nx affected --target=build-storybook",
"affected:check": "pnpm nx affected --target=build,lint:nx,check-types,test,build-storybook",
"affected:check:ci": "pnpm affected:check --exclude=document-drive",
"build:all": "pnpm nx run-many --target=build --all",
"test:all": "pnpm nx run-many --target=test --all",
"storybook:all": "pnpm nx run-many --target=build-storybook --all",
"check:all": "pnpm i && pnpm nx run-many --target=build,lint:nx,check-types,test,build-storybook --all",
"check:all:ci": "pnpm check:all --exclude=document-drive"
},
"devDependencies": {
"@chromatic-com/storybook": "^3",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.16.0",
"@jscutlery/semver": "^5.3.1",
"@nx/eslint": "20.2.2",
"@nx/js": "20.2.2",
"@storybook/addon-actions": "^8.4.6",
"@storybook/addon-docs": "^8.4.6",
"@storybook/addon-essentials": "^8.4.6",
"@storybook/addon-interactions": "^8.4.6",
"@storybook/addon-links": "^8.4.6",
"@storybook/addon-themes": "^8.4.6",
"@storybook/blocks": "^8.4.6",
"@storybook/components": "^8.4.6",
"@storybook/manager-api": "^8.4.6",
"@storybook/preview-api": "^8.4.6",
"@storybook/react": "^8.4.6",
"@storybook/react-vite": "^8.4.6",
"@storybook/test": "^8.4.6",
"@storybook/types": "^8.4.6",
"@swc-node/register": "~1.10.9",
"@swc/cli": "~0.5.2",
"@swc/core": "~1.9.3",
"@swc/helpers": "~0.5.15",
"@total-typescript/ts-reset": "^0.6.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser": "^2.1.8",
"@vitest/coverage-v8": "^2.1.7",
"@zkochan/js-yaml": "^0.0.7",
"chromatic": "^11.20.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"globals": "^15.13.0",
"graphql": "^16.9.0",
"husky": "^9.1.7",
"nx": "20.2.2",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"storybook": "^8.4.6",
"storybook-addon-pseudo-states": "^4.0.2",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.16",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.6",
"vite-node": "^2.1.8",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-generate-file": "^0.2.0",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "^2.1.8"
},
"dependencies": {
"@nx/devkit": "20.2.2",
"@nx/plugin": "^20.1.4"
},
"resolutions": {
"string-width": "4.2.3",
"strip-ansi": "6.0.0",
"jackspeak": "2.1.1",
"graphql": "^16.9.0",
"whatwg-url": "^14.0.0"
},
"engines": {
"node": ">=20"
}
}