-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "update-ros2-repos",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"prepare": "husky install",
"top-level:prettier": "prettier --ignore-path .gitignore \"*.{js,jsx,ts,tsx,json,json,yaml,yml,md}|.github/**/*.{yml,yaml}|.prettierrc\"",
"top-level:format": "npm run top-level:prettier -- --write",
"top-level:check-format": "npm run top-level:prettier -- --check",
"format": "turbo run format && npm run top-level:format",
"check-format": "turbo run check-format && npm run top-level:check-format",
"clean": "turbo run clean",
"test": "turbo run test",
"start": "turbo run start"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-custom": "*",
"husky": "^8.0.1",
"jest-jasmine2": "^29.2.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsup": "^6.3.0",
"turbo": "^1.6.3",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}