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
Gao Sun 947de83173
chore: upgrade configs (#4132)
* chore: upgrade configs

* chore: fix lint errors
2023-07-07 17:17:21 +00:00

57 lines
1.8 KiB
JSON

{
"name": "@logto/integration-tests",
"version": "1.4.0",
"description": "Integration tests for Logto.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
"private": true,
"type": "module",
"imports": {
"#src/*": "./lib/*"
},
"scripts": {
"build": "rm -rf lib/ && tsc -p tsconfig.test.json --sourcemap",
"test:only": "NODE_OPTIONS=--experimental-vm-modules jest",
"test": "pnpm build && pnpm test:api && pnpm test:ui",
"test:api": "pnpm test:only -i ./lib/tests/api/",
"test:ui": "pnpm test:only -i --config=jest.config.ui.js ./lib/tests/ui/",
"lint": "eslint --ext .ts src",
"lint:report": "pnpm lint --format json --output-file report.json",
"start": "pnpm test"
},
"devDependencies": {
"@jest/test-sequencer": "^29.5.0",
"@jest/types": "^29.1.2",
"@logto/connector-kit": "workspace:^1.1.0",
"@logto/js": "^2.1.1",
"@logto/node": "^2.1.1",
"@logto/schemas": "workspace:^1.6.0",
"@logto/shared": "workspace:^2.0.0",
"@silverhand/eslint-config": "4.0.1",
"@silverhand/essentials": "^2.5.0",
"@silverhand/ts-config": "4.0.0",
"@types/expect-puppeteer": "^5.0.3",
"@types/jest": "^29.4.0",
"@types/jest-environment-puppeteer": "^5.0.3",
"@types/node": "^18.11.18",
"dotenv": "^16.0.0",
"eslint": "^8.44.0",
"got": "^13.0.0",
"jest": "^29.5.0",
"jest-puppeteer": "^9.0.0",
"node-fetch": "^3.3.0",
"openapi-schema-validator": "^12.0.0",
"openapi-types": "^12.0.0",
"prettier": "^3.0.0",
"puppeteer": "^20.0.0",
"text-encoder": "^0.0.4",
"typescript": "^5.0.0"
},
"engines": {
"node": "^18.12.0"
},
"eslintConfig": {
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc"
}