forked from ory/elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.23 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
{
"name": "root",
"prettier": "ory-prettier-styles",
"private": "true",
"scripts": {
"storybook": "storybook dev -p 6006",
"initialize": "npm run clean && npx [email protected] bootstrap --hoist",
"clean": "npx [email protected] clean --yes",
"build-storybook": "storybook build",
"refresh": "lerna bootstrap --hoist",
"build:clean": "lerna run build --skip-nx-cache",
"build": "lerna run build --stream",
"build:react": "lerna run build --stream --scope=@ory/elements --skip-nx-cache",
"build:preact": "lerna run build --stream --scope=@ory/elements-preact --skip-nx-cache",
"build:markup": "lerna run build --stream --scope=@ory/elements-markup --skip-nx-cache",
"build:test": "lerna run build --stream --scope=@ory/elements-test --skip-nx-cache",
"test": "playwright test -c playwright-ct.config.ts",
"docs": "typedoc --entryPointStrategy packages . --out docs",
"generate-locales": "cd scripts && npm run generate-locales"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ory/elements.git"
},
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/ory/elements/issues"
},
"homepage": "https://github.com/ory/elements#readme",
"devDependencies": {
"@babel/core": "7.18.10",
"@ory/client": "1.2.4",
"@ory/integrations": "1.1.5",
"@playwright/experimental-ct-react": "1.32.1",
"@playwright/test": "1.32.1",
"@preact/preset-vite": "2.5.0",
"@storybook/addon-docs": "7.4.0",
"@storybook/addon-essentials": "7.4.0",
"@storybook/addon-interactions": "7.4.0",
"@storybook/addon-links": "7.4.0",
"@storybook/core-common": "7.4.0",
"@storybook/node-logger": "7.4.0",
"@storybook/react": "7.4.0",
"@storybook/react-vite": "7.4.0",
"@types/express": "4.17.17",
"@types/node": "18.16.19",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"@vanilla-extract/css": "1.13.0",
"@vanilla-extract/dynamic": "2.0.3",
"@vanilla-extract/recipes": "0.5.0",
"@vanilla-extract/sprinkles": "1.6.1",
"@vanilla-extract/vite-plugin": "3.9.0",
"@vitejs/plugin-react": "4.0.4",
"autoprefixer": "10.4.15",
"chromatic": "6.21.0",
"classnames": "2.3.2",
"eslint": "8.32.0",
"eslint-plugin-formatjs": "4.10.3",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.13",
"eslint-plugin-tsdoc": "0.2.17",
"lerna": "5.6.2",
"license-checker": "25.0.1",
"nx": "15.7.2",
"ory-prettier-styles": "1.3.0",
"postcss": "8.4.29",
"prettier": "3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intl": "6.4.4",
"storybook": "7.4.0",
"typedoc": "0.23.16",
"typescript": "5.2.2",
"vite": "4.4.9",
"vite-plugin-dts": "3.5.3",
"vite-plugin-static-copy": "0.17.0"
},
"files": [
"dist/*"
],
"engines": {
"node": ">=16.16.0",
"npm": ">=8.11.0"
},
"workspaces": [
"packages/*",
"examples/*"
],
"dependencies": {
"lodash": "4.17.21",
"tough-cookie": "4.1.3"
},
"overrides": {
"@ory/integrations": {
"tough-cookie": "$tough-cookie"
}
}
}