-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.19 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
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
{
"name": "autocannon-ui",
"version": "2.3.5",
"description": "A Web user interface for autocannon",
"repository": "nearform/autocannon-ui",
"type": "module",
"bin": {
"autocannon-ui": "./cli.js"
},
"author": {
"name": "Sameer Srivastava",
"email": "sameer.srivastava@nearform.com"
},
"workspaces": [
"packages/*"
],
"files": [
"index.js",
"packages/autocannon-ui-frontend/dist",
"packages/autocannon-ui-backend/routes",
"packages/autocannon-ui-backend/services",
"packages/autocannon-ui-backend/index.js",
"packages/autocannon-ui-backend/package.json",
"packages/autocannon-compare-cli/lib.js",
"packages/autocannon-compare-cli/util.js",
"packages/autocannon-compare-cli/package.json"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --stream --workspaces",
"start-backend": "npm run dev --workspace=autocannon-ui-backend",
"start-frontend": "npm run dev --workspace=autocannon-ui-frontend",
"start": "concurrently --kill-others \"npm run start-backend\" \"npm run start-frontend\"",
"test:qa": "npm run test:qa --stream --workspace=autocannon-ui-frontend",
"test": "npm run test --stream --workspaces --if-present",
"toc": "markdown-toc README.md -i",
"prepublish": "npm run build"
},
"dependencies": {
"@fastify/cors": "^9.0.0",
"@fastify/static": "^8.0.3",
"autocannon": "^8.0.0",
"autocannon-compare": "^0.4.0",
"commander": "^12.1.0",
"concurrently": "^9.0.0",
"env-schema": "^6.0.0",
"fastify": "^4.0.2",
"fastify-cli": "^7.0.1",
"fastify-plugin": "^4.0.0",
"fluent-json-schema": "^5.0.0",
"pino": "^9.1.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.0.1",
"markdown-toc": "^1.2.0"
},
"lint-staged": {
"**/*.js": [
"eslint --fix"
]
}
}