-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.29 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.29 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
{
"name": "opspilot",
"version": "0.1.0",
"private": true,
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"dev:orchestrator": "npm run dev -w @opspilot/orchestrator",
"dev:bot": "npm run dev -w @opspilot/discord-bot",
"dev": "concurrently \"npm run dev:orchestrator\" \"npm run dev:bot\"",
"build": "npm -ws run build",
"typecheck": "npm -ws run typecheck",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"**/*.{ts,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,json,md}\"",
"test": "echo \"Tests require jest - run: npm install --save-dev jest ts-jest @types/jest\" && exit 0",
"test:demo": "node scripts/test-demo.js",
"register:commands": "npm run register -w @opspilot/discord-bot",
"db:init": "psql -U postgres -f infra/init.sql",
"docker:up": "docker-compose -f infra/docker-compose.yml up -d",
"docker:down": "docker-compose -f infra/docker-compose.yml down",
"setup": "npm install && npm run docker:up && npm run db:init"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"concurrently": "^9.2.1",
"eslint": "^8.57.0",
"prettier": "^3.2.5"
}
}