0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/integration-tests/package.json

61 lines
1.9 KiB
JSON
Raw Normal View History

{
"name": "@logto/integration-tests",
2023-03-22 01:58:19 -05:00
"version": "1.0.2",
"description": "Integration tests for Logto.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
"private": true,
2022-12-12 08:15:09 -05:00
"type": "module",
"imports": {
"#src/*": "./lib/*"
},
"scripts": {
2022-12-12 08:15:09 -05:00
"build": "rm -rf lib/ && tsc -p tsconfig.test.json --sourcemap",
"test:only": "NODE_OPTIONS=--experimental-vm-modules jest",
2022-12-17 23:11:00 -05:00
"test": "pnpm build && pnpm test:api && pnpm test:ui",
2023-03-06 00:45:14 -05:00
"test:api": "pnpm test:only -i ./lib/tests/api/",
"test:ui": "pnpm test:only -i --config=jest.config.ui.js ./lib/tests/ui/",
"test:ui-cloud": "pnpm test:only -i --config=jest.config.ui.js ./lib/tests/ui-cloud/",
2022-12-12 08:52:17 -05:00
"lint": "eslint --ext .ts src",
"lint:report": "pnpm lint --format json --output-file report.json",
"start": "pnpm test"
},
"devDependencies": {
2022-10-14 01:57:27 -05:00
"@jest/types": "^29.1.2",
"@logto/connector-kit": "workspace:^",
"@logto/js": "1.1.0",
"@logto/node": "1.1.0",
"@logto/schemas": "workspace:^",
"@peculiar/webcrypto": "^1.3.3",
2023-02-16 10:49:03 -05:00
"@silverhand/eslint-config": "2.0.1",
"@silverhand/essentials": "^2.5.0",
2023-02-17 00:41:05 -05:00
"@silverhand/ts-config": "2.0.3",
2023-03-06 04:44:48 -05:00
"@types/expect-puppeteer": "^5.0.3",
2023-03-07 01:54:57 -05:00
"@types/jest": "^29.4.0",
2023-03-06 04:44:48 -05:00
"@types/jest-environment-puppeteer": "^5.0.3",
2023-01-07 07:42:10 -05:00
"@types/node": "^18.11.18",
"dotenv": "^16.0.0",
2023-02-16 10:49:03 -05:00
"eslint": "^8.34.0",
2022-12-12 08:15:09 -05:00
"got": "^12.5.3",
2023-03-07 01:54:57 -05:00
"jest": "^29.5.0",
"jest-puppeteer": "^7.0.0",
2022-12-13 05:11:51 -05:00
"node-fetch": "^3.3.0",
"openapi-schema-validator": "^12.0.0",
"openapi-types": "^12.0.0",
2023-02-16 10:49:03 -05:00
"prettier": "^2.8.2",
"puppeteer": "^19.0.0",
"text-encoder": "^0.0.4",
"typescript": "^5.0.0"
},
2022-11-05 11:29:28 -05:00
"engines": {
2023-01-07 07:42:10 -05:00
"node": "^18.12.0"
2022-11-05 11:29:28 -05:00
},
"eslintConfig": {
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"dependencies": {
"@withtyped/server": "^0.8.1"
}
}