-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.92 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
{
"name": "GraphFlix",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.5.6",
"graphql": "^16.1.0",
"modern-css-reset": "^1.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.1.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.3.0",
"@graphql-codegen/fragment-matcher": "^3.2.0",
"@graphql-codegen/import-types-preset": "^2.1.8",
"@graphql-codegen/typescript-operations": "^2.2.1",
"@graphql-codegen/typescript-react-apollo": "^3.2.2",
"@testing-library/cypress": "^8.0.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vitejs/plugin-react": "^1.1.1",
"cypress": "^9.1.1",
"eslint": "8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"faker": "^5.5.3",
"jest": "^27.4.5",
"local-cypress": "^1.2.3",
"prettier": "^2.5.1",
"sass": "^1.45.0",
"ts-jest": "^27.1.2",
"typescript": "^4.5.3",
"vite": "^2.7.1",
"vite-tsconfig-paths": "^3.3.17"
},
"scripts": {
"build": "tsc && vite build",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "vite",
"generate": "graphql-codegen",
"lint": "npx tsc --noEmit; npx eslint \"src/**/*.{ts,tsx}\"",
"serve": "vite preview",
"test": "jest",
"test:e2e": "cypress run"
}
}