-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.44 KB
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
{
"name": "web-accessibility-tool",
"private": true,
"version": "0.1.1",
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev:backend": "npm --workspace backend run dev",
"dev:worker": "npm --workspace backend run worker",
"dev:frontend": "npm --workspace frontend run dev",
"test": "npm --workspace backend test && npm --workspace frontend test",
"lint": "npm --workspace backend run lint && npm --workspace frontend run lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"smoke:load": "k6 run tests/load/smoke.k6.js",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^21.0.0",
"@storybook/addon-a11y": "^10.3.6",
"@storybook/nextjs-vite": "^10.3.6",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"storybook": "^10.3.6",
"ts-node": "^10.9.2",
"vite": "^7.3.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,cjs,mjs,json,md,yml,yaml,css}": [
"prettier --write"
]
},
"overrides": {
"ajv": "^8.20.0",
"basic-ftp": "^6.0.1",
"postcss": "^8.5.14",
"tmp": "^0.2.5",
"protobufjs": "^8.0.3",
"eslint": {
"ajv": "^6.12.6"
},
"@eslint/eslintrc": {
"ajv": "^6.12.6"
}
}
}