-
Notifications
You must be signed in to change notification settings - Fork 424
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.72 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 4.72 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "find-a-mentor",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18.x"
},
"dependencies": {
"@netlify/functions": "^2.0.0",
"@sendgrid/client": "^8.1.4",
"@sendgrid/mail": "^8.1.4",
"@sentry/browser": "^8.33.0",
"@sentry/node": "^9.6.0",
"auth0-js": "^9.13.2",
"axios": "^1.8.3",
"babel-plugin-styled-components": "^2.0.1",
"classnames": "^2.3.1",
"ejs": "^3.1.10",
"express": "^4.17.3",
"inquirer-autocomplete-prompt": "^1.0.1",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"iso-639-1": "^2.1.3",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"lodash": "^4.17.21",
"marked": "^15.0.11",
"mongodb": "^6.14.2",
"next": "^12.1.0",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-aria-offcanvas": "^1.3.4",
"react-autocomplete": "^1.8.1",
"react-dom": "^16.9.0",
"react-infinite-scroll-component": "^4.5.3",
"react-infinite-scroller": "^1.2.4",
"react-modal-hook": "^3.0.0",
"react-obfuscate": "^3.6.2",
"react-onclickoutside": "^6.9.0",
"react-scripts": "^4.0.1",
"react-select": "^3.0.4",
"react-tippy": "^1.2.3",
"react-toastify": "^5.3.2",
"react-transition-group": "^4.4.1",
"styled-components": "^5.0.0-beta.8",
"svg-country-flags": "^1.2.6",
"url-pattern": "^1.0.3"
},
"scripts": {
"dev": "netlify dev",
"build": "next build",
"start": "next dev",
"lint": "next lint",
"test": "yarn test:unit && yarn test:functions && yarn test:e2e:run",
"test:unit": "react-scripts test",
"test:functions": "jest --env=node netlify/functions-src/functions",
"test:unit:update-snapshot": "react-scripts test -u",
"golden": "yarn prettier",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build",
"prettier": "prettier \"**/*.{json,js,ts}\" --check --loglevel log",
"prettier:fix:file": "prettier --write",
"prettier:fix": "prettier \"**/*.{json,js,ts}\" --write",
"cy:run": "concurrently -kill-others --success first \"yarn storybook\" \"wait-on http://localhost:6006 && cypress run\"",
"cy:open": "concurrently -kill-others --success first \"yarn storybook\" \"cypress open\"",
"cy:open:tests": "concurrently -kill-others --success first \"BROWSER=none yarn start\" \"cypress open\"",
"test:e2e": "is-ci \"test:e2e:run\" \"test:e2e:dev\"",
"test:e2e:run": "start-server-and-test start http://localhost:3000 cy:run",
"test:e2e:dev": "start-server-and-test start http://localhost:3000 cy:open",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -c .storybook -o build/sb"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"import/no-anonymous-default-export": "off",
"no-console": "warn",
"no-restricted-syntax": [
"error",
{
"selector": "CallExpression[callee.object.name='localStorage']",
"message": "Do not use `localStorage` directly, use the storage wrapper instead"
},
{
"selector": "CallExpression[callee.object.name='sessionStorage']",
"message": "Do not use `sessionStorage` directly, use the storage wrapper instead"
}
]
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@netlify/plugin-nextjs": "4.41.3",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.2.9",
"@testing-library/cypress": "^7.0.6",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.3",
"@types/auth0-js": "^9.14.7",
"@types/classnames": "^2.3.1",
"@types/ejs": "^3.1.5",
"@types/jest": "^26.0.23",
"@types/jsonwebtoken": "^9.0.9",
"@types/lodash": "^4.14.170",
"@types/mongodb": "^4.0.7",
"@types/node": "^15.12.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"@types/react-helmet": "^6.1.2",
"@types/react-select": "^4.0.15",
"@types/styled-components": "^5.1.0",
"ajv": "^6.10.2",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"cypress": "^7.6.0",
"execa": "^2.0.4",
"gh-pages": "^2.1.1",
"image-type": "^4.1.0",
"inquirer": "^7.0.0",
"is-ci-cli": "^1.1.1",
"jest-styled-components": "^7.0.2",
"netlify-cli": "^17.0.0",
"nock": "^13.1.3",
"node-fetch": "^3.2.10",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"object-path": "^0.11.8",
"ora": "^3.4.0",
"prettier": "^2.4.0",
"start-server-and-test": "^1.10.0",
"typescript": "^4.3.2",
"wait-on": "^6.0.0"
},
"license": "MIT",
"resolutions": {
"babel-loader": "8.1.0"
}
}