-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.39 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.39 KB
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
{
"name": "quacker",
"description": "The web code for a simple Twitter clone - Quacker.",
"version": "0.1.0",
"private": true,
"repository": "https://github.com/devavi-labs/twitter-clone-web.git",
"dependencies": {
"@date-io/date-fns": "1.3.13",
"@material-ui/core": "^4.11.2",
"@material-ui/pickers": "^3.2.10",
"@urql/exchange-auth": "^0.1.2",
"@urql/exchange-graphcache": "^4.0.0",
"clipboard-copy": "^4.0.1",
"date-fns": "^2.16.1",
"emoji-mart": "^3.0.0",
"formik": "^2.2.6",
"formik-material-ui": "^3.0.1",
"formik-material-ui-pickers": "^0.0.12",
"graphql": "^15.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"numeral": "^2.0.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.1.0",
"react-infinite-scroll-component": "^5.1.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-swipeable-views": "^0.13.9",
"regexify-string": "^1.0.5",
"twitter-text": "^3.1.0",
"typescript": "^4.0.3",
"urql": "2.0.1",
"yup": "^0.32.8"
},
"scripts": {
"dev": "concurrently \"pnpm start\" \"cd ../../node/twitter-clone-backend && pnpm start\"",
"start": "react-app-rewired start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"gen": "graphql-codegen --config codegen.yml"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"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": "^1.20.0",
"@graphql-codegen/introspection": "^1.18.1",
"@graphql-codegen/typescript": "^1.19.0",
"@graphql-codegen/typescript-operations": "^1.17.13",
"@graphql-codegen/typescript-urql": "^2.0.3",
"@types/customize-cra": "^1.0.0",
"@types/emoji-mart": "^3.0.4",
"@types/node": "^12.0.0",
"@types/numeral": "^0.0.29",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.6",
"@types/react-swipeable-views": "^0.13.0",
"@types/twitter-text": "^3.1.0",
"@types/yup": "^0.29.11",
"babel-plugin-import": "^1.13.3",
"customize-cra": "^1.0.0",
"react-app-rewired": "^2.1.8"
}
}