-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.3 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
{
"name": "todo-app",
"version": "0.0.0",
"scripts": {
"dev": "concurrently -k \"vite\" \"graphql-codegen --config codegen.yml\"",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "jest",
"generate": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^3.4.16",
"@auth0/auth0-react": "^1.8.0",
"graphql": "^15.7.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-icons": "^4.3.1",
"react-loader-spinner": "^4.0.0",
"uuid": "^8.3.2",
"vite-plugin-svgr": "^0.4.0",
"vite-tsconfig-paths": "^3.3.17"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.2.2",
"@graphql-codegen/typescript": "^2.3.1",
"@graphql-codegen/typescript-operations": "^2.2.0",
"@graphql-codegen/typescript-react-apollo": "^3.2.1",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/testing-library__jest-dom": "^5.14.1",
"@types/uuid": "^8.3.1",
"@vitejs/plugin-react": "^1.0.0",
"concurrently": "^6.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.3.2",
"vite": "^2.6.4"
}
}