forked from ory/elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.59 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
{
"name": "root",
"prettier": "ory-prettier-styles",
"private": "true",
"scripts": {
"storybook": "start-storybook -p 6006",
"initialize": "npm install && npm run clean && lerna bootstrap",
"clean": "lerna clean --yes",
"build-storybook": "build-storybook",
"refresh": "lerna bootstrap",
"build": "lerna run build --stream",
"build:react": "lerna run build --stream --scope=@ory/themes",
"build:preact": "lerna run build --stream --scope@ory/themes-preact",
"build:markup": "lerna run build --stream --scope=@ory/themes-markup",
"test": "playwright test -c playwright-ct.config.ts",
"format": "prettier --write '{src/**/*,}.{tsx,ts,js,css}'",
"format:check": "prettier --check '{src/**/*,}.{tsx,ts,js,css}'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ory/themes.git"
},
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/ory/themes/issues"
},
"homepage": "https://github.com/ory/themes#readme",
"overrides": {
"@vanilla-extract/vite-plugin": {
"vite": "^3"
}
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@ory/client": "^0.2.0-alpha.16",
"@ory/integrations": "file:../integrations",
"@playwright/experimental-ct-react": "^1.25.0",
"@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",
"ory-prettier-styles": "^1.3.0",
"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.0"
},
"files": [
"dist/*"
],
"engines": {
"node": ">=16.16.0",
"npm": ">=8.11.0"
},
"workspaces": [
"packages/*"
]
}