-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.25 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
{
"name": "@remkoj/optimizely-frontend",
"packageManager": "yarn@4.5.1",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"apps/*"
],
"engines": {
"node": ">=20.0.0 <21.0.0"
},
"devDependencies": {
"@types/source-map-support": "^0.5.10",
"@yarnpkg/sdks": "^3.2.0",
"eslint": "8.57.1",
"source-map-support": "^0.5.21",
"typescript": "^5.6.3",
"vercel": "^37.14.0"
},
"exports": null,
"scripts": {
"dev": "yarn workspace frontend dev",
"build": "yarn workspace frontend build",
"start": "yarn workspace frontend start",
"lint": "yarn workspace frontend lint",
"graphql:watch": "yarn workspace frontend watch",
"graphql:codegen": "yarn workspace frontend compile",
"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": {
"@graphql-codegen/visitor-plugin-common": "file:./packages/graphql-codegen-visitor-plugin-common-v5.4.0-patched.tgz"
}
}