-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.48 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
44
45
46
{
"name": "@remkoj/optimizely-frontend",
"packageManager": "[email protected]",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"apps/*",
"packages/remkoj/*"
],
"engines": {
"node": ">=18.0.0 <21.0.0",
"vscode": "^1.22.0"
},
"devDependencies": {
"@types/source-map-support": "^0.5.10",
"@yarnpkg/sdks": "^3.1.0",
"source-map-support": "^0.5.21",
"typescript": "5.3.3",
"vercel": "^33.5.3"
},
"exports": null,
"scripts": {
"dev": "yarn workspace frontend dev",
"build": "yarn workspace frontend build",
"start": "yarn workspace frontend start",
"lint": "yarn workspace frontend lint",
"type-check": "yarn workspace frontend tsc --pretty --noEmit",
"build-pkgs": "yarn workspaces foreach -Wt --exclude frontend --exclude @remkoj/optimizely-frontend run build",
"rebuild-pkgs": "yarn workspaces foreach -Wt --exclude frontend --exclude @remkoj/optimizely-frontend run rebuild",
"watch-pkgs": "yarn workspaces foreach -Apt --exclude frontend --exclude @remkoj/optimizely-frontend run watch",
"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"
},
"resolutions": {
"debug": "^4.3.4",
"semver": "^7.5.4",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"undici": "^5.28.3"
},
"dependencies": {
"graphql": "^16.8.1",
"graphql-request": "^6.1.0"
}
}