-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.81 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
{
"name": "fencing-club",
"private": true,
"version": "0.0.0",
"sideEffects": false,
"type": "module",
"scripts": {
"preview": "vite preview",
"dev": "yarn dev:web",
"dev:api": "yarn build:api && swa start http://localhost:3000 --api-location ./api --run \"yarn dev:api && yarn dev:web\"",
"dev:web": "vite",
"dev:build": "yarn build && swa start ./dist --api-location ./api",
"build": "yarn build:web && yarn build:api",
"build:api": "cd api && yarn build",
"build:web": "yarn lint:ts && vite build",
"lint": "yarn lint:js && yarn lint:ts",
"lint:js": "eslint src",
"lint:ts": "tsc --project tsconfig.json --pretty --noEmit",
"gql": "cross-env DOTENV_CONFIG_PATH=.env.local graphql-codegen --config codegen.js -r dotenv/config",
"gql:watch": "yarn gql --watch",
"prepare": "husky install",
"postinstall": "cd api && yarn install"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@auth0/auth0-react": "^2.2.4",
"@azure/app-configuration": "^1.3.1",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fluentui/react": "^8.115.1",
"@fluentui/react-components": "^9.46.0",
"@fluentui/react-icons": "^2.0.225",
"@fluentui/theme-samples": "^8.7.132",
"@loadable/component": "^5.16.3",
"@microsoft/applicationinsights-react-js": "^17.0.3",
"@microsoft/applicationinsights-web": "^3.0.7",
"@reduxjs/toolkit": "^1.8.5",
"@stripe/react-stripe-js": "^1.11.0",
"@stripe/stripe-js": "^1.46.0",
"dayjs": "^1.11.5",
"modern-normalize": "^1.1.0",
"polished": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-autocomplete": "^2.6.1",
"react-hook-form": "^7.43.9",
"react-markdown": "^8.0.3",
"react-redux": "^8.0.4",
"react-router-dom": "^6.4.1",
"stripe": "^14.10.0"
},
"devDependencies": {
"@azure/static-web-apps-cli": "^1.1.6",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/introspection": "^4.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^4.1.0",
"@types/loadable__component": "^5.13.8",
"@types/node": "^20.11.6",
"@types/react": "18.0.9",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react-swc": "^3.5.0",
"azure-functions-core-tools": "^4.0.5455",
"cross-env": "^7.0.3",
"eslint": "8.47.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.5",
"gql": "^1.1.2",
"graphql": "^16.8.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rollup-plugin-visualizer": "^5.8.3",
"sass": "^1.69.6",
"typescript": "5.1.6",
"vite": "^5.0.12",
"vite-plugin-static-copy": "^1.0.0"
}
}