-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.94 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.94 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "front-end",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.3.14",
"@graphql-codegen/typescript": "^1.21.1",
"@graphql-codegen/typescript-operations": "^1.17.15",
"@hcaptcha/react-hcaptcha": "^0.3.6",
"@hookform/resolvers": "^2.8.3",
"apollo-upload-client": "^16.0.0",
"babel-plugin-transform-imports": "^2.0.0",
"boxicons": "^2.1.2",
"buffer": "^6.0.3",
"dayjs": "^1.11.2",
"dotenv": "^10.0.0",
"gapi-script": "^1.2.0",
"graphql": "^15.5.0",
"html-react-parser": "^1.4.0",
"lodash": "^4.17.21",
"node-fetch": "2",
"pell": "^1.0.6",
"react": "^17.0.1",
"react-dom": "^17.0.2",
"react-facebook-login": "^4.1.1",
"react-google-login": "^5.2.2",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.19.4",
"react-icons": "^4.3.1",
"react-infinite-scroll-component": "^6.1.0",
"react-player": "^2.9.0",
"react-router-dom": "^5.2.0",
"react-router-sitemap": "^1.2.0",
"react-scripts": "^5.0.1",
"react-select": "^5.2.1",
"react-spring": "^9.4.2",
"react-swipeable-views": "^0.13.9",
"react-web-share": "^1.1.3",
"reactjs-popup": "^2.0.5",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1",
"yup": "^0.32.11"
},
"scripts": {
"start": "concurrently \"yarn generate --watch\" \"react-app-rewired start --host 0.0.0.0\"",
"build": "yarn generate && react-app-rewired build",
"build:beta": "DOTENV_CONFIG_PATH=.env.beta yarn generate -r dotenv/config && DOTENV_CONFIG_PATH=.env.beta react-app-rewired -r dotenv/config build",
"build:prod": "DOTENV_CONFIG_PATH=.env.prod yarn generate -r dotenv/config && DOTENV_CONFIG_PATH=.env.prod react-app-rewired -r dotenv/config build",
"format": "npx prettier \"src/**/*.{js,jsx,ts,tsx,html,css,scss}\" --write",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"generate": "graphql-codegen codegen.yml",
"generate:watch": "yarn generate --watch",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@dreysolano/prerender-spa-plugin": "^1.0.3",
"@graphql-codegen/cli": "^1.21.3",
"@graphql-codegen/typescript-react-apollo": "^2.2.3",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@typeform/embed-react": "^1.2.1",
"@types/apollo-upload-client": "^14.1.0",
"@types/history": "^4.7.8",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.176",
"@types/node": "^12.0.0",
"@types/pell": "^1.0.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-facebook-login": "^4.1.4",
"@types/react-helmet": "^6.1.5",
"@types/react-pdf": "^5.0.2",
"@types/react-router-dom": "^5.1.7",
"@types/react-swipeable-views": "^0.13.0",
"apollo": "^2.34.0",
"autoprefixer": "^10.4.7",
"babel-cli": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"concurrently": "^6.0.1",
"cssnano": "^5.1.5",
"customize-cra": "^1.0.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"install": "^0.13.0",
"lint-staged": "^12.4.2",
"postcss": "^8.4.14",
"prerender-spa-plugin": "^3.4.0",
"prettier": "^2.6.2",
"react-app-rewired": "^2.2.1",
"tailwindcss": "^3.0.24",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}