-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
99 lines (99 loc) · 3.29 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
{
"name": "authgear-portal",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"test": "jest",
"start": "vite",
"build": "vite build",
"clean": "rm -rf ./dist/ && mkdir ./dist/ && touch ./dist/.gitkeep",
"typecheck": "tsc",
"prettier:format": "prettier --list-different --write --cache './src/**/*.{js,ts,jsx,tsx,css,scss,html}'",
"eslint:format": "eslint --fix",
"stylelint:format": "stylelint --cache --fix './src/**/*.{css,scss}'",
"prettier": "prettier --list-different --cache './src/**/*.{js,ts,jsx,tsx,css,scss,html}'",
"eslint": "eslint",
"stylelint": "stylelint --cache './src/**/*.{css,scss}'",
"gentype": "graphql-codegen --config ./graphql.portal.codegen.yaml && graphql-codegen --config ./graphql.adminapi.codegen.yaml",
"ensure-reproducible-build": "../scripts/sh/ensure-reproducible-build.sh -n 5 -p './dist/.vite/manifest.json'",
"browserslist-coverage-lint": "../scripts/sh/ensure-browserslist-coverage.sh"
},
"overrides": {
"word-wrap": "@aashutoshrathi/word-wrap"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/near-operation-file-preset": "3.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@graphql-codegen/typescript-react-apollo": "4.1.0",
"@jest/globals": "29.7.0",
"@oursky/eslint-plugin": "^15.0.1",
"@oursky/stylelint-oursky": "3.0.0",
"@savvywombat/tailwindcss-grid-areas": "3.1.0",
"@types/deep-equal": "1.0.4",
"@types/jest": "29.5.8",
"@types/js-yaml": "4.0.9",
"@types/luxon": "3.3.4",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/stripe-v3": "3.1.32",
"@types/uuid": "9.0.7",
"@types/zxcvbn": "4.4.4",
"@vitejs/plugin-react": "4.3.1",
"eslint": "^9.12.0",
"globals": "^15.10.0",
"graphql": "16.8.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "2.8.8",
"stylelint": "14.11.0",
"tailwindcss": "3.3.5",
"ts-jest": "29.1.1",
"typescript": "5.2.2",
"vite": "^5.4.6"
},
"dependencies": {
"@apollo/client": "3.8.7",
"@authgear/web": "1.0.1",
"@elgorditosalsero/react-gtm-hook": "2.7.2",
"@fluentui/merge-styles": "8.5.13",
"@fluentui/react": "8.112.8",
"@fluentui/react-hooks": "8.6.33",
"@fluentui/react-icons": "^2.0.239",
"@fortawesome/fontawesome-free": "5.15.4",
"@monaco-editor/react": "4.6.0",
"@oursky/react-messageformat": "2.0.2",
"@sentry/react": "^8.33.1",
"@tabler/icons": "1.107.0",
"axios": "1.7.4",
"base64-js": "1.5.1",
"bignumber.js": "9.1.2",
"chart.js": "4.4.0",
"chartjs-plugin-datalabels": "2.2.0",
"classnames": "2.3.2",
"cldr-localenames-full": "44.0.1",
"cropperjs": "1.6.1",
"deep-equal": "2.2.3",
"fast-xml-parser": "^4.5.0",
"history": "5.3.0",
"immer": "10.0.3",
"intl-tel-input": "18.5.3",
"js-yaml": "4.1.0",
"libphonenumber-js": "1.10.53",
"luxon": "3.4.4",
"monaco-editor": "0.44.0",
"postcss": "8.4.31",
"react": "17.0.2",
"react-chartjs-2": "5.2.0",
"react-dom": "17.0.2",
"react-helmet-async": "2.0.5",
"react-router-dom": "6.3.0",
"tzdata": "1.0.40",
"uuid": "9.0.1",
"zxcvbn": "4.4.2"
}
}