-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "gs-inbox-interview",
"license": "UNLICENSED",
"type": "module",
"scripts": {
"vite:dev": "vite",
"gql:server": "node --no-warnings server/index.js",
"dev": "concurrently -c auto \"npm run gql:server\" \"npm run vite:dev\""
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@apollo/client": "^3.7.10",
"date-fns": "^2.29.3",
"graphql": "^16.6.0",
"graphql-ws": "^5.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@apollo/server": "^4.5.0",
"@faker-js/faker": "^7.6.0",
"@graphql-tools/graphql-file-loader": "^7.5.16",
"@graphql-tools/load-files": "^6.6.1",
"@graphql-tools/schema": "^9.0.17",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"body-parser": "^1.20.2",
"concurrently": "^9.1.0",
"cors": "^2.8.5",
"eslint": "^8.36.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.2",
"graphql-scalars": "^1.20.4",
"graphql-subscriptions": "^2.0.0",
"pino": "^8.11.0",
"pino-http": "^8.3.3",
"pino-pretty": "^10.0.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"ws": "^8.13.0"
}
}