-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 3.47 KB
/
package.json
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
43
{
"name": "google-analytics-embed-react",
"scripts": {
"all:lint:fix": "npm run backend:lint:fix && npm run backend_auth:lint:fix && npm run frontend_auth:lint:fix && npm run reactlib:lint:fix && npm run typeslib:lint:fix",
"all:lint:check": "npm run backend:lint:check && npm run backend_auth:lint:check && npm run frontend_auth:lint:check && npm run reactlib:lint:check && npm run typeslib:lint:check",
"backend:lint:fix": "npm run lint:fix --workspace sites/express-backend",
"backend:lint:check": "npm run lint:check --workspace sites/express-backend",
"backend_auth:lint:fix": "npm run lint:fix --workspace sites/react-backend-auth",
"backend_auth:lint:check": "npm run lint:check --workspace sites/react-backend-auth",
"frontend_auth:lint:fix": "npm run lint:fix --workspace sites/react-frontend-auth",
"frontend_auth:lint:check": "npm run lint:check --workspace sites/react-frontend-auth",
"reactlib:lint:fix": "npm run lint:fix --workspace packages/google-analytics-embed-react",
"reactlib:lint:check": "npm run lint:check --workspace packages/google-analytics-embed-react",
"typeslib:lint:fix": "npm run lint:fix --workspace packages/google-analytics-embed-types",
"typeslib:lint:check": "npm run lint:check --workspace packages/google-analytics-embed-types",
"all:prettier:fix": "npm run backend:prettier:fix && npm run backend_auth:prettier:fix && npm run frontend_auth:prettier:fix && npm run reactlib:prettier:fix && npm run typeslib:prettier:fix",
"all:prettier:check": "npm run backend:prettier:check && npm run backend_auth:prettier:check && npm run frontend_auth:prettier:check && npm run reactlib:prettier:check && npm run typeslib:prettier:check",
"backend:prettier:fix": "npm run prettier:fix --workspace sites/express-backend",
"backend:prettier:check": "npm run prettier:check --workspace sites/express-backend",
"backend_auth:prettier:fix": "npm run prettier:fix --workspace sites/react-backend-auth",
"backend_auth:prettier:check": "npm run prettier:check --workspace sites/react-backend-auth",
"frontend_auth:prettier:fix": "npm run prettier:fix --workspace sites/react-frontend-auth",
"frontend_auth:prettier:check": "npm run prettier:check --workspace sites/react-frontend-auth",
"reactlib:prettier:fix": "npm run prettier:fix --workspace packages/google-analytics-embed-react",
"reactlib:prettier:check": "npm run prettier:check --workspace packages/google-analytics-embed-react",
"typeslib:prettier:fix": "npm run prettier:fix --workspace packages/google-analytics-embed-types",
"typeslib:prettier:check": "npm run prettier:check --workspace packages/google-analytics-embed-types",
"backend:start": "npm run start --workspace sites/express-backend",
"backend_auth:start": "npm run start --workspace sites/react-backend-auth",
"backend_auth:build": "npm run build --workspace sites/react-backend-auth",
"frontend_auth:start": "npm run start --workspace sites/react-frontend-auth",
"frontend_auth:build": "npm run build --workspace sites/react-frontend-auth",
"reactlib:build": "npm run build --workspace packages/google-analytics-embed-react",
"reactlib:build:prod": "npm run build:prod --workspace packages/google-analytics-embed-react"
},
"private": true,
"workspaces": {
"packages": [
"packages/*",
"sites/*"
]
}
}