forked from ory/elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.89 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
{
"name": "root",
"prettier": "ory-prettier-styles",
"private": "true",
"scripts": {
"storybook": "start-storybook -p 6006",
"initialize": "npm install && npm run clean && lerna bootstrap --hoist",
"clean": "lerna clean --yes",
"build-storybook": "build-storybook",
"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",
"build:preact": "lerna run build --stream --scope@ory/elements-preact",
"build:markup": "lerna run build --stream --scope=@ory/elements-markup",
"version": "lerna version --no-private --no-git-tag-version --no-changelog --message 'chore(release): bump version to %s' --yes",
"test": "playwright test -c playwright-ct.config.ts",
"test-e2e": "playwright test -c playwright.config.ts"
},
"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",
"overrides": {
"@vanilla-extract/vite-plugin": {
"vite": "^3"
}
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@ory/client": "^0.2.0-alpha.48",
"@ory/elements": "*",
"@ory/elements-test": "*",
"@ory/integrations": "^0.2.7",
"@playwright/experimental-ct-react": "^1.25.0",
"@playwright/test": "^1.25.1",
"@preact/preset-vite": "^2.3.0",
"@storybook/addon-docs": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-vite": "^0.2.2",
"@storybook/core-common": "^6.5.10",
"@storybook/node-logger": "^6.5.10",
"@storybook/react": "^6.5.10",
"@types/express": "^4.17.13",
"@types/node": "^16.11.7",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@vanilla-extract/css": "^1.7.3",
"@vanilla-extract/dynamic": "^2.0.2",
"@vanilla-extract/recipes": "^0.2.5",
"@vanilla-extract/sprinkles": "^1.4.1",
"@vanilla-extract/vite-plugin": "^3.3.1",
"@vitejs/plugin-react": "^2.0.1",
"classnames": "^2.3.1",
"eslint": "^8.22.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"lerna": "^5.4.3",
"nx": "14.5.10",
"ory-prettier-styles": "^1.3.0",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"require-from-string": "^2.0.2",
"typescript": "^4.7.4",
"vite": "^3.0.9",
"vite-plugin-dts": "^1.4.1",
"wait-on": "^6.0.1"
},
"files": [
"dist/*"
],
"engines": {
"node": ">=16.16.0",
"npm": ">=8.11.0"
},
"workspaces": [
"packages/*",
"tests/*"
]
}