-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 882 Bytes
/
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
{
"name": "locust-swarm",
"version": "1.0.0",
"description": "Paralelize locust load tests",
"main": "app/index.js",
"scripts": {
"serve": "./node_modules/nodemon/bin/nodemon.js app/index.js --ignore 'client/*.js' --exec 'npm run lint && node'",
"lint": "./node_modules/.bin/eslint '**/*.js' --ignore-pattern 'client/dist/' ",
"build": "npm ci && npm ci --prefix client && npm run build --prefix client"
},
"keywords": [
"locust",
"loadtest"
],
"author": "Gianni Carafa",
"license": "MIT",
"dependencies": {
"@kubernetes/client-node": "^0.15.1",
"axios": "^0.21.4",
"connect-history-api-fallback": "^1.6.0",
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"kubernetes-client": "^9.0.0",
"socket.io": "^4.3.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"nodemon": "^2.0.13"
}
}