forked from ory/integrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.61 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
{
"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 --detectOpenHandles"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/cookie": "^0.4.1",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/node": "^12.11.5",
"@types/request": "^2.48.7",
"@types/set-cookie-parser": "^2.4.1",
"@types/supertest": "^2.0.11",
"babel-jest": "^27.2.0",
"esbuild": "^0.12.28",
"express": "^4.17.1",
"jest": "^27.2.0",
"rollup": "^2.56.3",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-esbuild": "^4.5.0",
"supertest": "^6.1.6",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@ory/client": "^0.2.0-alpha.16",
"next": ">=12.0.10"
},
"dependencies": {
"@ory/client": "^1.1.0",
"cookie": "^0.4.1",
"istextorbinary": "^6.0.0",
"next": ">=12.0.10",
"@types/tldjs": "^2.3.1",
"tldjs": "^2.3.1",
"ory-prettier-styles": "^1.3.0",
"prettier": "^2.3.2",
"request": "^2.88.2",
"set-cookie-parser": "^2.4.8"
}
}