-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.2 KB
/
package.json
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
{
"name": "fns-load-test",
"version": "1.0.0",
"repository": "[email protected]:tests/utils/fns-load.git",
"author": "Alexander Sotskov <[email protected]>",
"license": "MIT",
"scripts": {
"check-types": "tsc",
"check-types:watch": "tsc --watch",
"monitors": "docker-compose up -d",
"build": "webpack",
"smoke": "docker-compose run --rm k6 run /dist/smoke.js",
"go:docker:smoke": "npm run build && npm run smoke",
"go:k6:smoke": "npm run build && dotenv -e .env k6 run dist/smoke.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/k6": "^0.47.3",
"@types/webpack": "^5.28.5",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"dotenv": "^16.4.1",
"dotenv-webpack": "^8.0.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-glob-entries": "^1.0.1"
}
}