-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
40
41
42
43
44
{
"name": "k6-demo",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:shavo007/k6-demo.git",
"author": "Shane Lee",
"license": "MIT",
"scripts": {
"html": "ts-node html_report.ts",
"bundle": "webpack",
"format": "prettier --write .",
"**/*": "prettier --write --ignore-unknown",
"prepare": "husky install",
"check-fmt": "prettier --check ."
},
"dependencies": {
"@babel/core": "7.22.5",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/preset-env": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@types/k6": "0.45.0",
"@types/lodash": "4.14.195",
"babel-loader": "9.1.2",
"lodash": "4.17.21",
"typescript": "5.1.3",
"webpack": "5.88.0"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@types/node": "20.3.1",
"clean-webpack-plugin": "4.0.0",
"husky": "8.0.3",
"k6-html-reporter": "1.0.5",
"lint-staged": "13.2.2",
"prettier": "2.8.8",
"ts-node": "10.9.1",
"webpack-bundle-analyzer": "4.9.0",
"webpack-cli": "5.1.4"
},
"lint-staged": {
"*.{js,ts,css,md}": "prettier --write"
}
}