2022-05-17 16:59:57 +08:00
|
|
|
{
|
|
|
|
"name": "@logto/integration-tests",
|
2024-07-06 09:07:56 +08:00
|
|
|
"version": "1.7.0",
|
2022-05-17 16:59:57 +08:00
|
|
|
"description": "Integration tests for Logto.",
|
|
|
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
|
|
|
"license": "MPL-2.0",
|
|
|
|
"private": true,
|
2022-12-12 21:15:09 +08:00
|
|
|
"type": "module",
|
|
|
|
"imports": {
|
|
|
|
"#src/*": "./lib/*"
|
|
|
|
},
|
2022-05-17 16:59:57 +08:00
|
|
|
"scripts": {
|
2022-12-12 21:15:09 +08:00
|
|
|
"build": "rm -rf lib/ && tsc -p tsconfig.test.json --sourcemap",
|
|
|
|
"test:only": "NODE_OPTIONS=--experimental-vm-modules jest",
|
2023-09-14 17:28:00 +08:00
|
|
|
"test": "pnpm build && pnpm test:api && pnpm test:experience && pnpm test:console",
|
2023-03-06 13:45:14 +08:00
|
|
|
"test:api": "pnpm test:only -i ./lib/tests/api/",
|
2023-09-15 00:50:13 +08:00
|
|
|
"test:experience": "pnpm test:only -i --config=jest.config.ui.js ./lib/tests/experience/",
|
2023-09-14 17:28:00 +08:00
|
|
|
"test:console": "pnpm test:only -i --config=jest.config.ui.js ./lib/tests/console/",
|
2022-12-12 21:52:17 +08:00
|
|
|
"lint": "eslint --ext .ts src",
|
2022-05-17 16:59:57 +08:00
|
|
|
"lint:report": "pnpm lint --format json --output-file report.json",
|
2022-08-12 18:07:16 +08:00
|
|
|
"start": "pnpm test"
|
2022-05-17 16:59:57 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-16 11:19:54 +08:00
|
|
|
"@apidevtools/swagger-parser": "^10.1.0",
|
2023-05-22 13:31:45 +08:00
|
|
|
"@jest/test-sequencer": "^29.5.0",
|
2022-10-14 14:57:27 +08:00
|
|
|
"@jest/types": "^29.1.2",
|
2024-07-06 09:07:56 +08:00
|
|
|
"@logto/connector-kit": "workspace:^4.0.0",
|
2023-12-15 16:59:48 +08:00
|
|
|
"@logto/core-kit": "workspace:^",
|
2024-07-02 12:32:22 +08:00
|
|
|
"@logto/js": "^4.1.4",
|
2024-07-03 10:35:19 +08:00
|
|
|
"@logto/node": "^2.5.4",
|
2024-07-06 09:07:56 +08:00
|
|
|
"@logto/schemas": "workspace:^1.18.0",
|
2024-05-14 20:27:55 +08:00
|
|
|
"@logto/shared": "workspace:^3.1.1",
|
2024-04-18 12:26:37 +00:00
|
|
|
"@silverhand/eslint-config": "6.0.1",
|
2024-05-17 16:02:05 +08:00
|
|
|
"@silverhand/essentials": "^2.9.1",
|
2024-04-18 12:26:37 +00:00
|
|
|
"@silverhand/ts-config": "6.0.0",
|
2023-03-07 14:54:57 +08:00
|
|
|
"@types/jest": "^29.4.0",
|
2023-12-11 09:10:53 +08:00
|
|
|
"@types/node": "^20.9.5",
|
2022-07-27 10:09:13 +08:00
|
|
|
"dotenv": "^16.0.0",
|
2024-04-18 12:26:37 +00:00
|
|
|
"eslint": "^8.56.0",
|
2024-02-23 11:58:11 +08:00
|
|
|
"expect-puppeteer": "^10.0.0",
|
2023-12-22 15:16:49 +08:00
|
|
|
"jest": "^29.7.0",
|
2023-11-09 16:57:33 +08:00
|
|
|
"jest-matcher-specific-error": "^1.0.0",
|
2024-03-27 10:21:46 +08:00
|
|
|
"jest-puppeteer": "^10.0.1",
|
2023-11-09 16:57:33 +08:00
|
|
|
"jose": "^5.0.0",
|
2024-03-29 18:10:13 +08:00
|
|
|
"ky": "^1.2.3",
|
2023-11-16 11:19:54 +08:00
|
|
|
"openapi-schema-validator": "^12.1.3",
|
|
|
|
"openapi-types": "^12.1.3",
|
2023-07-08 01:17:21 +08:00
|
|
|
"prettier": "^3.0.0",
|
2024-04-18 18:26:58 +08:00
|
|
|
"puppeteer": "^22.6.5",
|
2022-06-16 13:00:01 +08:00
|
|
|
"text-encoder": "^0.0.4",
|
2024-05-13 16:11:50 +08:00
|
|
|
"typescript": "^5.3.3",
|
|
|
|
"zod": "^3.22.4"
|
2022-05-17 16:59:57 +08:00
|
|
|
},
|
2022-11-06 00:29:28 +08:00
|
|
|
"engines": {
|
2023-12-11 09:10:53 +08:00
|
|
|
"node": "^20.9.0"
|
2022-11-06 00:29:28 +08:00
|
|
|
},
|
2022-05-17 16:59:57 +08:00
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "@silverhand"
|
|
|
|
},
|
2023-09-26 14:42:02 +08:00
|
|
|
"prettier": "@silverhand/eslint-config/.prettierrc",
|
|
|
|
"dependencies": {
|
|
|
|
"otplib": "^12.0.1"
|
|
|
|
}
|
2022-05-17 16:59:57 +08:00
|
|
|
}
|