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

50 lines
1.7 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\\. \\.licensing\\.",
"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 ../ && DISABLE_RATE_LIMITING=1 yarn dev:built"
},
"devDependencies": {
"@budibase/types": "^2.3.17",
2024-01-12 05:51:18 +13:00
"@swc/core": "1.3.71",
"@swc/jest": "0.2.27",
2023-07-25 22:31:17 +12:00
"@trendyol/jest-testcontainers": "2.1.1",
"@types/jest": "29.5.3",
2023-09-07 21:18:29 +12:00
"@types/node-fetch": "2.6.4",
"chance": "1.1.8",
"dotenv": "16.0.1",
2023-11-07 02:24:33 +13:00
"jest": "29.7.0",
"prettier": "2.7.1",
"start-server-and-test": "1.14.0",
"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",
2023-09-23 04:17:19 +12:00
"typescript": "5.2.2"
},
"dependencies": {
"@budibase/backend-core": "^2.3.17",
2022-10-01 03:35:13 +13:00
"form-data": "^4.0.0",
2024-01-12 05:51:18 +13:00
"node-fetch": "2.6.7",
"stripe": "^14.11.0"
}
}