/ package.json
package.json
1 { 2 "name": "gatling-ts-demo", 3 "version": "3.14.703", 4 "private": true, 5 "type": "module", 6 "main": "target/bundle", 7 "dependencies": { 8 "@gatling.io/core": "3.14.903", 9 "@gatling.io/http": "3.14.903" 10 }, 11 "devDependencies": { 12 "@gatling.io/cli": "3.14.903", 13 "prettier": "3.7.4", 14 "rimraf": "6.1.2", 15 "typescript": "5.9.3" 16 }, 17 "scripts": { 18 "clean": "rimraf target", 19 "format": "prettier --write '**/*.ts'", 20 "format-check": "prettier --check '**/*.ts'", 21 "check": "tsc --noEmit", 22 "build": "tsc --noEmit && gatling build --typescript", 23 "recorder": "gatling recorder --typescript", 24 "badSimulation": "tsc --noEmit && gatling run --typescript --simulation badSimulation", 25 "goodSimulation": "tsc --noEmit && gatling run --typescript --simulation goodSimulation" 26 } 27 }