forked from ory/elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.6 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.6 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "root",
"private": "true",
"scripts": {
"build:clean": "nx run-many --target=build --all --skip-nx-cache",
"build": "nx run-many --target=build,api-extractor --all",
"build:react": "nx run @ory/elements:build --skip-nx-cache",
"build:preact": "nx run @ory/elements-preact:build --skip-nx-cache",
"build:markup": "nx run @ory/elements-markup:build --skip-nx-cache",
"build:test": "nx run @ory/elements-test:build --skip-nx-cache",
"test": "nx run-many --target=test --all",
"lint": "nx run-many --target=lint,api-extractor --all",
"generate-locales": "cd scripts && npm run generate-locales"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ory/elements.git"
},
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/ory/elements/issues"
},
"overrides": {
"koa": ">= 2.16.0",
"qs": ">=6.14.1"
},
"homepage": "https://github.com/ory/elements#readme",
"devDependencies": {
"@eslint/eslintrc": "2.1.4",
"@eslint/js": "9.27.0",
"@formatjs/cli-lib": "7.4.1",
"@microsoft/api-extractor": "7.52.8",
"@nx/eslint": "21.3.11",
"@nx/eslint-plugin": "21.3.11",
"@nx/jest": "21.3.11",
"@nx/js": "21.3.11",
"@nx/react": "21.3.11",
"@nx/storybook": "21.3.11",
"@nx/vite": "21.3.11",
"@nx/web": "21.3.11",
"@storybook/addon-a11y": "8.6.15",
"@storybook/addon-docs": "8.6.15",
"@storybook/addon-essentials": "8.6.15",
"@storybook/addon-interactions": "8.6.15",
"@storybook/addon-links": "8.6.15",
"@storybook/core-common": "8.6.15",
"@storybook/core-server": "8.6.15",
"@storybook/jest": "^0.2.3",
"@storybook/node-logger": "8.6.15",
"@storybook/react": "8.6.15",
"@storybook/react-vite": "8.6.15",
"@storybook/test-runner": "^0.23.0",
"@storybook/testing-library": "^0.2.2",
"@storybook/types": "8.6.15",
"@swc-node/register": "~1.10.0",
"@swc/core": "~1.11.0",
"@swc/helpers": "~0.5.11",
"@tailwindcss/postcss": "4.1.12",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.7.0",
"@testing-library/react": "16.3.0",
"@types/jest": "29.5.14",
"@types/node": "^22",
"@types/react": "18.3.21",
"@types/react-dom": "18.3.7",
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"@vitejs/plugin-react": "4.4.1",
"eslint": "9.27.0",
"eslint-plugin-better-tailwindcss": "3.7.10",
"eslint-plugin-formatjs": "5.3.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-storybook": "0.12.0",
"eslint-plugin-tsdoc": "0.4.0",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"jest-transform-stub": "2.0.0",
"license-checker": "25.0.1",
"nx": "21.3.11",
"postcss": "^8.4.43",
"prettier": "3.5.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-intl": "6.8.9",
"storybook": "8.6.15",
"storybook-addon-mock": "5.0.0",
"storybook-mock-date-decorator": "2.0.6",
"tailwindcss": "4.1.12",
"ts-jest": "29.4.1",
"ts-node": "10.9.2",
"tsup": "8.5.0",
"typescript": "5.8.3",
"typescript-eslint": "8.32.1",
"vite": "6.4.1",
"vite-plugin-require": "1.2.14",
"vite-plugin-svgr": "4.3.0",
"zx": "8.8.5"
},
"files": [
"dist/*"
],
"engines": {
"node": ">=22.18.0",
"npm": ">=8.11.0"
},
"workspaces": [
"packages/*",
"examples/*",
"scripts/*"
],
"dependencies": {
"lodash": "4.17.23",
"next": "15.5.9",
"tslib": "2.8.1",
"tsx": "4.20.2"
}
}