-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·103 lines (103 loc) · 3.25 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "social-frontend",
"version": "0.1.2",
"private": true,
"scripts": {
"dev": "next dev -p 3002",
"build": "next build",
"generate": "graphql-codegen",
"prestart": "pnpm run generate",
"predev": "pnpm run generate",
"start": "next start -p 3002",
"pre-commit": "lint-staged",
"pre-push": "pnpm run type-check",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest --watch",
"test:ci": "jest --ci",
"prepare": "husky install"
},
"lint-staged": {
"*.@(ts|tsx)": [
"pnpm run lint",
"pnpm run format"
]
},
"dependencies": {
"@apollo/client": "3.8.10",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/theme": "^3.3.1",
"@chakra-ui/theme-tools": "^2.1.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@testing-library/react": "^14.1.2",
"babel-plugin-superjson-next": "^0.4.5",
"deepmerge": "^4.3.1",
"formik": "^2.4.5",
"framer-motion": "^11.0.3",
"graphql": "^16.8.1",
"graphql-ws": "^5.14.3",
"lodash": "^4.17.21",
"next": "14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-focus-lock": "^2.9.7",
"react-icons": "^5.0.1",
"react-test-renderer": "^18.2.0",
"superagent": "^8.1.2",
"superjson": "^2.2.1",
"yup": "^1.3.3"
},
"devDependencies": {
"@babel/runtime": "^7.23.8",
"@faker-js/faker": "^8.3.1",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/plugin-helpers": "^5.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^4.1.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/emoji-mart": "^3.0.14",
"@types/jest": "^29.5.11",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.11.6",
"@types/react": "^18.2.48",
"@types/react-test-renderer": "^18.0.7",
"@types/superagent": "^8.1.3",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"babel-jest": "^29.7.0",
"babel-plugin-chakra-ui": "1.0.0-next.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-import-graphql": "^2.8.1",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"graphql-config": "^5.0.3",
"graphql-let": "^0.18.6",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-next-dynamic": "^1.0.1",
"jest-transform-graphql": "^2.1.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"prop-types": "^15.8.1",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}