-
-
Notifications
You must be signed in to change notification settings - Fork 322
/
package.json
103 lines (103 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "altair",
"description": "The best graphQL client you will ever need",
"version": "8.0.2",
"author": "Samuel Imolorhe <[email protected]> (https://sirmuel.design/)",
"bugs": "https://github.com/altair-graphql/altair/issues",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/altair",
"logo": "https://opencollective.com/altair/logo.txt"
},
"devDependencies": {
"@changesets/cli": "^2.18.1",
"@playwright/test": "^1.31.2",
"@types/prettier": "^3.0.0",
"chalk": "^4.1.0",
"compare-versions": "^6.1.1",
"cwex": "^1.0.4",
"dotenv-cli": "^7.2.1",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"execa": "^5.0.0",
"https-browserify": "^1.0.0",
"inquirer": "^7.3.3",
"lerna": "^4.0.0",
"ng-packagr": "^13.0.8",
"nx": "17.1.3",
"opencollective": "^1.0.3",
"path-browserify": "^1.0.0",
"process": "^0.11.10",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"snyk": "^1.1234.0",
"start-server-and-test": "1.11.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.1.0",
"syncpack": "^9.8.4",
"turbo": "^2.0.6",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^4.0.3",
"typedoc-vitepress-theme": "^1.0.0",
"typescript": "5.2.2",
"web-ext": "^6.5.0",
"wrangler": "^2.0.27"
},
"engines": {
"node": ">= 16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/altair"
},
"homepage": "https://altair-graphql.github.io/altair/",
"keywords": [
"altair",
"client",
"editor",
"graphql",
"wysiwyg"
],
"license": "MIT",
"private": true,
"repository": "altair-graphql/altair.git",
"resolutions": {
"**/oauth": "0.10.0",
"y18n": "4.0.1"
},
"scripts": {
"build": "yarn build-api",
"build-api": "yarn --cwd packages/altair-api build",
"build-app": "nx build @altairgraphql/app",
"build-electron": "lerna bootstrap && nx build altair",
"build-ext": "yarn build-app && cwex build",
"build:ci": "lerna bootstrap -- --frozen-lockfile",
"lerna-publish": "lerna publish from-git --force-publish=* --yes",
"local-verify": "yarn build-app && lerna bootstrap",
"postinstall": "opencollective postinstall || true",
"prepare": "nx run-many --target=prepare --output-style=stream --nxBail=true",
"publish-packages": "lerna bootstrap && yarn lerna-publish",
"snyk-protect": "snyk protect",
"start-test-server": "./bin/start_ci_test_server.sh",
"start:api:dev": "nx start:dev @altairgraphql/api",
"start:api:prod": "yarn --cwd packages/altair-db prisma migrate deploy && yarn --cwd packages/altair-db prisma db seed && yarn --cwd packages/altair-api start:prod",
"start:app": "nx start @altairgraphql/app",
"start:redirect": "nx dev @altairgraphql/login-redirect",
"start:sandbox": "nx dev @altairgraphql/iframe-sandbox",
"start:electron": "nx dev altair",
"start:stripe:listen": "stripe listen --forward-to http://localhost:3000/stripe-webhook",
"test": "nx run-many --target=test",
"test:ci": "start-server-and-test start-test-server http://localhost:5400/test test:ci-test-only",
"test:ci-test-only": "nx affected --target=test --parallel=3 --output-style=stream",
"test:ci:retries": "yarn test:ci || yarn test:ci || yarn test:ci"
},
"snyk": true,
"workspaces": {
"packages": [
"packages/*",
"libs/*",
"plugins/*"
]
},
"packageManager": "[email protected]"
}