forked from Coding-Coach/find-a-mentor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.69 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
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "find-a-mentor",
"version": "0.1.0",
"private": true,
"engines": {
"node": "<17"
},
"dependencies": {
"@sentry/browser": "^5.6.3",
"auth0-js": "^9.13.2",
"babel-plugin-styled-components": "^2.0.1",
"classnames": "^2.3.1",
"express": "^4.17.3",
"inquirer-autocomplete-prompt": "^1.0.1",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"iso-639-1": "^2.1.3",
"lodash": "^4.17.21",
"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"
},
"scripts": {
"dev": "next dev",
"prebuild": "yarn golden",
"build": "next build",
"start": "next start",
"test": "yarn test:unit && yarn test:e2e:run",
"test:unit": "react-scripts test",
"test:unit:update-snapshot": "react-scripts test -u",
"golden": "yarn prettier",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build",
"prettier": "prettier \"**/*.{json,js}\" --check --loglevel log",
"prettier:fix:file": "prettier --write",
"prettier:fix": "prettier \"**/*.{json,js}\" --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"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@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/classnames": "^2.3.1",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@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",
"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"
}
}