forked from swan-io/swan-partner-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 4 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
104
105
106
107
{
"name": "@swan-io/partner-frontend",
"description": "Swan front-end code",
"version": "1.4.3",
"private": true,
"engines": {
"node": ">=18.0.0",
"yarn": "^1.22.0"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/swan-io/frontend"
},
"scripts": {
"configure": "tsx scripts/configure/configure.ts",
"graphql-update-schemas": "tsx -r dotenv/config scripts/graphql/downloadSchemas.ts",
"graphql-codegen": "graphql-codegen --config scripts/graphql/codegen.ts",
"format": "prettier '**/*' --ignore-unknown --write",
"link-locale-lake": "sh scripts/lake/link-locale-lake.sh",
"unlink-locale-lake": "sh scripts/lake/unlink-locale-lake.sh",
"dev": "tsx -r dotenv/config server/src/index.ts --dev",
"dev-swan": "tsx -r dotenv/config server/src/index.swan.ts --dev dotenv_config_path=.env.swan",
"build": "tsx -r dotenv/config scripts/build/index.ts",
"typecheck": "tsc --noEmit",
"license-report": "tsx scripts/license-crawler/crawlLicenses.ts --check --report",
"license-check": "tsx scripts/license-crawler/crawlLicenses.ts --check",
"lint": "eslint 'clients/*/src/**/*.{ts,tsx}'",
"test": "vitest run --passWithNoTests",
"lint-env-vars": "tsx scripts/env/lintEnvVariables.ts",
"type-env-vars": "tsx scripts/env/writeEnvInterface.ts",
"generate-cookie-key": "tsx scripts/cookie/generateCookieKey.ts",
"deploy-ci": "tsx scripts/deploy/deploy.ts",
"ai-translate": "tsx -r dotenv/config scripts/locales/aiTranslate.ts",
"sort-locales": "tsx scripts/locales/sort.ts",
"remove-unused-locales": "tsx scripts/locales/removeUnused.ts",
"release": "tsx scripts/release/createPullRequest.ts",
"dev-e2e": "tsx -r dotenv/config server/src/index.ts --dev dotenv_config_path=.env.e2e",
"read-e2e-sms": "tsx scripts/twilio/getLastMessages.ts",
"test-e2e": "playwright test",
"test-e2e-ui": "playwright test --ui",
"match-e2e-translations": "tsx scripts/tests/matchTranslations.ts",
"configure-hooks": "git config --local core.hooksPath .hooks",
"ci-get-changelog": "tsx scripts/changelog/getChangelog.ts"
},
"workspaces": {
"packages": [
"clients/*",
"server"
]
},
"lint-staged": {
"clients/**/src/locales/*.json": "yarn sort-locales",
"*": "prettier --ignore-unknown --write",
"**/*.{js,ts,tsx}": "eslint --fix",
"clients/**/src/**/*.gql": "yarn graphql-codegen"
},
"devDependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@formatjs/icu-messageformat-parser": "2.7.3",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/introspection": "4.0.0",
"@graphql-codegen/typed-document-node": "5.0.1",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-graphql-request": "6.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@graphql-codegen/typescript-urql-graphcache": "2.4.4",
"@localazy/cli": "1.7.5",
"@playwright/test": "1.40.1",
"@sentry/cli": "2.22.3",
"@swan-io/boxed": "2.0.0",
"@types/glob": "8.1.0",
"@types/prompts": "2.4.9",
"@types/sodium-native": "2.3.9",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"@urql/introspection": "1.0.2",
"dotenv": "16.3.1",
"eslint": "8.55.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-native": "4.1.0",
"eslint-plugin-swan": "file:scripts/eslint",
"fast-glob": "3.3.2",
"graphql": "16.8.1",
"lint-staged": "15.2.0",
"openai": "4.20.1",
"ora": "7.0.1",
"pathe": "1.1.1",
"picocolors": "1.0.0",
"prettier": "3.1.0",
"prettier-plugin-organize-imports": "3.2.4",
"prompts": "2.4.2",
"semver": "7.5.4",
"slackify-markdown": "4.4.0",
"sodium-native": "^4.0.4",
"terser": "5.25.0",
"tiktoken-node": "0.0.6",
"ts-prune": "0.10.3",
"tsx": "4.6.2",
"type-fest": "4.8.3",
"typescript": "5.3.2",
"valienv": "0.5.0",
"vite": "5.0.5",
"vitest": "1.0.1"
}
}