-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.44 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": "@viamrobotics/js-config",
"private": true,
"engines": {
"node": ">=18"
},
"license": "Apache-2.0",
"type": "module",
"scripts": {
"all": "concurrently -g pnpm:lint pnpm:test pnpm:build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . && prettier . --check",
"build": "tsc -b",
"format": "eslint . --fix && prettier . --write",
"update-dependencies": "pnpm update --recursive --interactive --latest"
},
"packageManager": "[email protected]+sha256.06e65a4965baff6d6097f9c8f75c35f6d420974dbc03d775009056a69edfd271",
"devDependencies": {
"@types/node": "^22.10.1",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@viamrobotics/eslint-config": "workspace:*",
"@viamrobotics/prettier-config": "workspace:*",
"@viamrobotics/typescript-config": "workspace:*",
"concurrently": "^9.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-svelte": "^2.46.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-testing-library": "^7.0.0",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^3.4.1",
"semver": "^7.6.3",
"svelte": "^5.4.0",
"tailwindcss": "3.4.15",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}