-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1014 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 1014 Bytes
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
{
"name": "hyperliquid-trading-sim",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "cd client && npm run dev",
"dev:server": "cd server && npm run dev",
"build": "npm run build:client && npm run build:server",
"build:client": "cd client && npm run build",
"build:server": "cd server && npm run build",
"install:all": "npm install && cd client && npm install && cd ../server && npm install",
"lint": "npm run lint:client && npm run lint:server",
"lint:client": "cd client && npm run lint",
"lint:server": "cd server && npm run lint",
"typecheck": "npm run typecheck:client && npm run typecheck:server",
"typecheck:client": "cd client && npx tsc --noEmit",
"typecheck:server": "cd server && npm run typecheck",
"test": "cd server && npm test",
"test:coverage": "cd server && npm run test:coverage"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}