1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00
budibase/qa-core/package.json

49 lines
1.6 KiB
JSON
Raw Normal View History

{
"name": "@budibase/qa-core",
"email": "hi@budibase.com",
"version": "0.0.1",
"main": "index.js",
"description": "Budibase Integration Test Suite",
"repository": {
"type": "git",
"url": "https://github.com/Budibase/budibase.git"
},
"scripts": {
"setup": "yarn && node scripts/createEnv.js",
"user": "yarn && node scripts/createEnv.js && node scripts/createUser.js",
2023-06-15 02:43:57 +12:00
"test": "jest --runInBand --json --outputFile=testResults.json --forceExit",
"test:watch": "yarn run test --watch",
"test:debug": "DEBUG=1 yarn run test",
2023-02-16 12:43:53 +13:00
"test:notify": "node scripts/testResultsWebhook",
"test:cloud:prod": "yarn run test --testPathIgnorePatterns=\\.integration\\.",
"test:cloud:qa": "yarn run test",
"test:self:ci": "yarn run test --testPathIgnorePatterns=\\.integration\\. \\.cloud\\.",
"serve:test:self:ci": "start-server-and-test dev:built http://localhost:4001/health test:self:ci",
2023-05-15 22:43:59 +12:00
"serve": "start-server-and-test dev:built http://localhost:4001/health",
"dev:built": "cd ../ && yarn dev:built"
},
"devDependencies": {
"@budibase/types": "^2.3.17",
2023-07-25 22:31:17 +12:00
"@trendyol/jest-testcontainers": "2.1.1",
"@types/jest": "29.5.3",
"@types/node-fetch": "2.6.2",
"chance": "1.1.8",
"dotenv": "16.0.1",
2023-07-28 07:26:29 +12:00
"jest": "29.6.2",
"prettier": "2.7.1",
"start-server-and-test": "1.14.0",
2023-07-26 07:19:24 +12:00
"@swc/core": "1.3.71",
2023-07-25 22:31:17 +12:00
"@swc/jest": "0.2.27",
"timekeeper": "2.2.0",
2023-07-25 22:31:17 +12:00
"ts-jest": "29.1.1",
"ts-node": "10.8.1",
"tsconfig-paths": "4.0.0",
"typescript": "4.7.3"
},
"dependencies": {
"@budibase/backend-core": "^2.3.17",
2022-10-01 03:35:13 +13:00
"form-data": "^4.0.0",
"node-fetch": "2"
}
}