-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.6 KB
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
{
"name": "@frontegg/nextjs",
"libName": "FronteggNextJs",
"version": "9.2.7",
"author": "Frontegg LTD",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/frontegg/frontegg-nextjs.git",
"directory": "packages/nextjs"
},
"homepage": "https://github.com/frontegg/frontegg-nextjs#readme",
"bugs": {
"url": "https://github.com/frontegg/frontegg-nextjs/issues",
"email": "support@frontegg.com"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf ./tsconfig.build.tsbuildinfo && rm -rf ./node_modules",
"build": "rm -rf ./tsconfig.build.tsbuildinfo && concurrently -s all \"yarn build:stable\" \"yarn build:types\" && yarn build:copy-files",
"build:watch": "yarn build && concurrently -s all \"yarn build:stable --watch\" \"yarn build:types --watch --preserveWatchOutput\"",
"build:stable": "node ../../scripts/build node",
"build:types": "tsc -b tsconfig.build.json",
"build:copy-files": "node ../../scripts/copy-files.js",
"test": "node ../../scripts/prepare-env-test-file.js && CI=true npx playwright test",
"lint-json": "eslint -c .eslintrc.json -o ./lint-report.json --format json --no-color ./src/**/*.{ts,tsx}"
},
"dependencies": {
"@frontegg/js": "7.80.0",
"@frontegg/react-hooks": "7.80.0",
"http-proxy": "^1.18.1",
"iron-session": "^6.3.1",
"jose": "^4.12.2"
},
"devDependencies": {
"@types/http-proxy": "^1.17.9"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}