-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "@ory/integrations",
"version": "v0.0.1",
"description": "Integrations for Ory Cloud",
"author": "Ory GmbH",
"prettier": "ory-prettier-styles",
"license": "Apache-2.0",
"repository": "https://github.com/ory/integrations",
"config": {
"prettierTarget": "**/*.{tsx,ts,json,md,js,css}"
},
"scripts": {
"format": "prettier --write ${npm_package_config_prettierTarget}",
"format:check": "prettier --check ${npm_package_config_prettierTarget}",
"build": "rm -rf dist ui nextjs && rollup -c",
"prepublishOnly": "npm run build",
"test": "jest --forceExit"
},
"devDependencies": {
"ory-prettier-styles": "1.3.0",
"prettier": "3.2.5",
"@babel/core": "7.23.9",
"@babel/preset-env": "7.23.9",
"@babel/preset-typescript": "7.23.3",
"@ory/client": "1.6.2",
"@types/cookie": "0.6.0",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/node": "18.17.14",
"@types/set-cookie-parser": "2.4.7",
"@types/supertest": "6.0.2",
"babel-jest": "29.7.0",
"esbuild": "0.20.1",
"express": "~4.21.1",
"jest": "29.7.0",
"rollup": "~4.24.0",
"rollup-plugin-dts": "6.1.0",
"rollup-plugin-esbuild": "6.1.1",
"supertest": "6.3.4",
"typescript": "5.3.3"
},
"peerDependencies": {
"@ory/client": ">1.1.38",
"next": ">=12.0.10"
},
"dependencies": {
"@types/tldjs": "~2.3.4",
"cookie": "~1.0.1",
"istextorbinary": "~9.5.0",
"next": ">=12.0.10",
"set-cookie-parser": "~2.7.0",
"tldjs": "~2.3.1"
}
}