-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.06 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
{
"name": "web",
"version": "0.1.0",
"private": true,
"optionalDependencies": {
"@vulcan-fydp/schema": "github:vulcan-fydp/schema#semver:^0.0.40"
},
"dependencies": {
"@apollo/client": "^3.5.7",
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.3",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fontsource/montserrat": "^4.5.4",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.5",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"controller-input": "^0.3.4",
"framer-motion": "^5.6.0",
"graphql": "^15.5.1",
"mediasoup-client": "^3.6.36",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.25.0",
"react-icons": "^4.3.1",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"screenfull": "5.2.0",
"subscriptions-transport-ws": "^0.9.19",
"typescript": "^4.5.5",
"web-vitals": "^2.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"dev": "npx concurrently \"npm:codegen:backend:watch\" \"npm:codegen:relay:watch\" \"npm:codegen:docs:watch\"",
"test": "react-scripts test",
"eject": "react-scripts eject",
"codegen": "npx concurrently \"npm:codegen:backend\" \"npm:codegen:relay\" \"npm:codegen:docs\"",
"codegen:backend": "graphql-codegen --config codegen.backend.yml",
"codegen:backend:watch": "npx chokidar --initial \"src/app/**/*.backend.gql\" -c \"npm run codegen:backend\"",
"codegen:relay": "graphql-codegen --config codegen.relay.yml",
"codegen:relay:watch": "npx chokidar --initial \"src/app/**/*.relay.gql\" -c \"npm run codegen:relay\"",
"codegen:docs": "npx ts-node --project=scripts/tsconfig.json ./scripts/gen-docs.ts",
"codegen:docs:watch": "npx chokidar --initial \"src/static/pages/docs/content/**/*.doc.tsx\" -c \"npm run codegen:docs\"",
"lint": "eslint src --fix",
"lint:ci": "eslint src"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@graphql-codegen/cli": "^2.4.0",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/near-operation-file-preset": "^2.2.3",
"@graphql-codegen/typescript": "^2.4.2",
"@graphql-codegen/typescript-operations": "^2.2.2",
"@graphql-codegen/typescript-react-apollo": "^3.2.2",
"@types/glob": "^7.2.0",
"@types/lodash.kebabcase": "^4.1.6",
"@types/rimraf": "^3.0.2",
"chokidar-cli": "^3.0.0",
"concurrently": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-graphql": "^4.0.0",
"glob": "^7.2.0",
"http-proxy-middleware": "^2.0.1",
"lodash.kebabcase": "^4.1.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0"
}
}