-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.93 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "user-office-proposal-performance-tests",
"description": "This is performance monitoring for the user office project",
"version": "1.0.0",
"type": "module",
"author": "",
"license": "BSD",
"sideEffects": false,
"scripts": {
"tsc": "tsc",
"lint": "concurrently \"npm run lint:tests\" \"npm run lint:test-setup\"",
"lint:test-setup": "cd test-setup && npm run lint",
"lint:tests": "tsc --noEmit && eslint",
"lint:fix": "concurrently \"npm run lint:fix:tests\" \"npm run lint:fix:test-setup\"",
"lint:fix:test-setup": "cd test-setup && npm run lint",
"lint:fix:tests": "tsc --noEmit && eslint . --ext .js,.ts --fix --quiet",
"bundle": "webpack",
"install:test-setup": "cd test-setup && npm install",
"build:k6-test": "npm run bundle",
"prettier": "prettier --write .",
"build:test-setup": "cd test-setup && npm run build",
"start:test-setup": "cd test-setup && npm run start",
"start:docker-test-setup": "cd test-setup && npm run start:docker",
"build": "concurrently \"npm run build:test-setup\" \"npm run build:k6-test\"",
"load-test": "npm run bundle && k6 run --no-usage-report - <./test/sc-load-test.js",
"prepare": "husky",
"postinstall": "cd test-setup && npm install",
"generate-uop": "graphql-codegen --require dotenv/config --config codegen.ts",
"generate:uows": "cd test-setup && npm run generate:uows",
"cluster-cli:build": "eslint && rm -rf ./cluster-cli/build && node esbuild.cli.config.mjs",
"cluster-cli:start": "npm run build && npm run cluster-cli:build && node ./cluster-cli/build/index.cjs"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/plugin-transform-class-properties": "^7.27.1",
"@babel/plugin-transform-object-rest-spread": "^7.28.0",
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.34.0",
"@graphql-codegen/cli": "^6.1.0",
"@graphql-codegen/typed-document-node": "^6.0.2",
"@types/k6": "^1.2.0",
"@types/node": "^25.0.3",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"esbuild": "0.27.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "3.8.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.48.1",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-glob-entries": "^1.0.1",
"webpack-sources": "^3.3.3"
},
"engines": {
"npm": ">=10.2.5",
"node": ">=21.0.0"
},
"dependencies": {
"@inquirer/prompts": "^8.0.1",
"@kubernetes/client-node": "^1.3.0",
"concurrently": "^9.2.1",
"date-fns": "^4.1.0",
"js-yaml": "^4.1.0",
"ora": "^9.0.0"
}
}