-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 4.18 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 4.18 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
{
"name": "junctionapp-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.10.8",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@hackjunction/shared": "file:../shared",
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.55",
"@mui/x-data-grid": "^4.0.2",
"@react-pdf/renderer": "^2.0.0-beta.6",
"@welldone-software/why-did-you-render": "^4.2.5",
"antd": "^4.3.1",
"auth0-js": "^9.13.2",
"axios": "^0.28.0",
"babel-plugin-import": "^1.13.0",
"cloudinary-react": "^1.5.0",
"connected-react-router": "^6.8.0",
"downloadjs": "^1.4.7",
"export-to-csv": "^0.2.1",
"formik": "^2.1.4",
"framer-motion": "^1.11.0",
"graphql": "^15.0.0",
"graphql-ws": "^5.9.1",
"i18next": "^19.4.5",
"i18next-browser-languagedetector": "^4.3.1",
"i18next-xhr-backend": "^3.2.2",
"lodash-es": "^4.17.15",
"logrocket": "^1.0.7",
"moment": "^2.26.0",
"moment-timezone": "^0.5.31",
"notistack": "^0.9.16",
"object-path": "^0.11.8",
"pdf-lib": "^1.17.1",
"qrcode.react": "^1.0.0",
"react": "16.13.1",
"react-beautiful-dnd": "^13.0.0",
"react-color": "^2.19.3",
"react-cookie-consent": "^6.2.4",
"react-countdown-now": "^2.1.2",
"react-csv": "^2.0.3",
"react-dom": "^16.13.1",
"react-facebook-pixel": "^1.0.3",
"react-ga": "^2.7.0",
"react-helmet": "^6.1.0",
"react-hyper-modal": "^1.2.11",
"react-i18next": "^11.5.0",
"react-inlinesvg": "^1.2.0",
"react-markdown": "^4.3.1",
"react-multi-carousel": "^2.8.4",
"react-player": "^2.6.2",
"react-qr-reader": "^2.2.1",
"react-redux": "^7.2.0",
"react-responsive-masonry": "^2.1.7",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"react-select": "^3.1.0",
"react-swipeable-views": "0.13.9",
"react-swipeable-views-utils": "0.13.9",
"react-table": "^7.1.0",
"recharts": "^1.8.5",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-pack": "^0.1.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"remark-breaks": "^1.0.5",
"reselect": "^4.0.0",
"speakingurl": "^14.0.1",
"tailwindcss": "^1.9.6",
"webfontloader": "^1.6.28",
"yup": "^0.29.1"
},
"scripts": {
"start": "node --expose-gc --max-old-space-size=8192 node_modules/react-scripts/scripts/start.js",
"build": "npm run build:styles && node --expose-gc --max-old-space-size=2048 node_modules/react-scripts/scripts/build.js",
"test": "node --expose-gc --max-old-space-size=8192 node_modules/react-scripts/scripts/test.js",
"eject": "node --expose-gc --max-old-space-size=8192 node_modules/react-scripts/scripts/eject.js",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix",
"depcheck": "depcheck .",
"eslint-check": "eslint --print-config path/to/main.js | eslint-config-prettier-check",
"precommit": "echo \"Frontend: running pre-commit checks\" && npm run lint",
"build:tailwind": "npx tailwindcss build src/styles/index.css -o src/styles/tailwind.css",
"build:styles": "npm run build:tailwind"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
],
"proxy": "http://localhost:2222",
"engines": {
"node": "12.3.1",
"npm": "6.9.0"
},
"devDependencies": {
"depcheck": "^0.9.2",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"postcss-cli": "^10.1.0",
"prettier": "^2.3.2"
}
}