-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (28 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (28 loc) · 1.13 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
{
"name": "ignis",
"version": "0.1.0",
"private": true,
"description": "Ignis — interactive rocket launch simulation platform",
"workspaces": [
"physics-engine",
"backend",
"frontend"
],
"scripts": {
"validate:physics": "npm run validate --workspace=physics-engine",
"dev:backend": "npm run dev --workspace=backend",
"dev:frontend": "npm run dev --workspace=frontend",
"lint": "eslint 'frontend/src/**/*.{ts,tsx}' 'backend/src/**/*.ts' 'physics-engine/src/**/*.ts'",
"lint:fix": "eslint --fix 'frontend/src/**/*.{ts,tsx}' 'backend/src/**/*.ts' 'physics-engine/src/**/*.ts'",
"format": "prettier --write '**/*.{ts,tsx,json,md}' --ignore-path .gitignore",
"format:check": "prettier --check '**/*.{ts,tsx,json,md}' --ignore-path .gitignore",
"typecheck": "npm run typecheck --workspace=physics-engine && npm run typecheck --workspace=backend && npm run typecheck --workspace=frontend"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"prettier": "^3.3.0"
}
}