-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.49 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
35
36
37
38
39
40
41
42
{
"name": "xstreamroll",
"version": "1.0.0",
"description": "XStreamRoll Platform - Monorepo",
"private": true,
"workspaces": [
"app",
"api",
"xstreamroll-sdk",
"xstreamroll-processing"
],
"scripts": {
"dev": "concurrently \"npm run dev:app\" \"npm run dev:api\"",
"dev:app": "cd app && npm run dev",
"dev:api": "cd api && npm run dev",
"build": "npm run build:app && npm run build:api",
"build:app": "cd app && npm run build",
"build:api": "cd api && npm run build",
"install:all": "npm install && npm run install:app && npm run install:api && npm run install:xstreamroll-sdk && npm run install:xstreamroll-processing",
"install:app": "cd app && npm install",
"install:api": "cd api && npm install",
"install:xstreamroll-sdk": "cd xstreamroll-sdk && npm install",
"install:xstreamroll-processing": "cd xstreamroll-processing && npm install",
"lint": "eslint --max-warnings=0 api xstreamroll-sdk xstreamroll-processing",
"lint:fix": "eslint --fix api xstreamroll-sdk xstreamroll-processing",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"baseline-browser-mapping": "^2.10.29",
"concurrently": "^8.2.2",
"eslint": "^8.57.1"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"js-cookie": "^3.0.7",
"react-hook-form": "^7.76.0",
"zod": "^4.4.3"
}
}