-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.3 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
{
"name": "tripdeck",
"private": true,
"version": "1.0.47",
"workspaces": [
"client",
"server"
],
"scripts": {
"dev": "concurrently -k -n client,server -c blue,green \"npm run dev -w client\" \"npm run dev -w server\"",
"build": "npm run build -w client && npm run build -w server",
"start": "npm run start -w server",
"lint": "npm run lint -w client && npm run lint -w server",
"lint:fix": "npm run lint:fix -w client && npm run lint:fix -w server",
"lint:check": "npm run lint:check -w client && npm run lint:check -w server",
"test": "npm run test -w client && npm run test -w server",
"test:watch": "concurrently -k -n client,server -c blue,green \"npm run test:watch -w client\" \"npm run test:watch -w server\"",
"test:coverage": "npm run test:coverage -w client && npm run test:coverage -w server",
"format": "prettier --write \"**/*.{ts,tsx,json,css}\" --ignore-path .prettierignore",
"format:check": "prettier --check \"**/*.{ts,tsx,json,css}\" --ignore-path .prettierignore",
"format:diff": "prettier --list-different \"**/*.{ts,tsx,json,css}\" --ignore-path .prettierignore",
"swagger": "npm run swagger -w server"
},
"devDependencies": {
"concurrently": "^9.1.2",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.6.14"
}
}