-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.79 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
43
44
45
46
47
48
49
{
"name": "@remkoj/optimizely-frontend",
"packageManager": "yarn@4.12.0",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"@remkoj/optimizely-graph-client": "^5.1.7",
"@remkoj/optimizely-graph-functions": "^5.1.7",
"@types/source-map-support": "^0.5.10",
"@yarnpkg/sdks": "^3.2.3",
"eslint": "8.57.1",
"graphql": "^16.12.0",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6",
"prettier": "^3.7.4",
"source-map-support": "^0.5.21",
"typescript": "^5.9.3",
"vercel": "^44.7.3"
},
"exports": null,
"scripts": {
"dev": "yarn workspace frontend dev",
"dev:https": "yarn workspace frontend dev:https",
"build": "yarn workspace frontend build",
"start": "yarn workspace frontend start",
"lint": "yarn workspace frontend lint",
"compile": "yarn workspace frontend compile",
"opti-cms": "yarn workspace frontend opti-cms",
"opti-graph": "yarn workspace frontend opti-graph",
"opti-fx": "yarn workspace frontend opti-fx",
"graphql:codegen": "yarn workspace frontend compile",
"graphql:patch": "yarn opti-graph patches:apply -p ../../",
"graphql:watch": "yarn workspace frontend watch",
"type-check": "yarn workspace frontend tsc --pretty --noEmit",
"update-sdks": "yarn sdks vscode",
"update-deps": "yarn upgrade-interactive && yarn dedupe && yarn sdks vscode",
"update-yarn": "yarn set version stable && yarn install && yarn sdks vscode",
"env:pull": "yarn vercel env pull apps/frontend/.env.development.local"
},
"resolutions": {
"whatwg-url": "^14",
"@graphql-codegen/visitor-plugin-common": "file:./packages/graphql-codegen-visitor-plugin-common-v5.8.0-patched.tgz"
}
}