-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
127 lines (127 loc) · 4.2 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
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "ShelterTech",
"version": "1.0.0",
"description": "Web Version",
"engines": {
"node": ">=15",
"npm": ">=8"
},
"browser": "app/init.jsx",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@sentry/browser": "^4.0.6",
"algoliasearch": "^4.10.5",
"auth0-js": "^9.22.1",
"classnames": "^2.2.6",
"copy-webpack-plugin": "^11.0.0",
"google-map-react": "^1.1.4",
"instantsearch.css": "^7.0.0",
"lodash": "^4.17.19",
"moment": "^2.24.0",
"node-polyfill-webpack-plugin": "^2.0.0",
"prop-types": "^15.5.10",
"pure-react-carousel": "^1.29.0",
"qrcode.react": "^3.0.2",
"qs": "^6.5.1",
"react": "^16.8.6",
"react-burger-menu": "^2.6.0",
"react-cookie": "^4.1.1",
"react-dom": "^16.8.6",
"react-ga": "^2.4.1",
"react-ga4": "^2.1.0",
"react-helmet-async": "^1.3.0",
"react-hot-loader": "^4.12.12",
"react-icons": "^4.2.0",
"react-instantsearch": "^5.0.1",
"react-intercom": "^1.0.15",
"react-markdown": "^3.3.2",
"react-modal": "^3.12.1",
"react-router-dom": "^5.1.2",
"react-select": "^1.0.0-rc.5",
"react-tippy": "^1.2.2",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/eslint-parser": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.4.4",
"@types/auth0-js": "^9.21.0",
"@types/chai": "^4.2.22",
"@types/enzyme": "^3.10.9",
"@types/google-map-react": "^2.1.3",
"@types/google.maps": "^3.53.5",
"@types/lodash": "^4.14.191",
"@types/mocha": "^9.0.0",
"@types/qs": "^6.9.6",
"@types/react": "^17.0.3",
"@types/react-burger-menu": "^2.8.1",
"@types/react-dom": "^17.0.3",
"@types/react-instantsearch": "^5.0.1",
"@types/react-modal": "^3.12.0",
"@types/react-router-dom": "^5.1.7",
"@types/react-select": "^1.3.0",
"@types/webpack-env": "^1.18.1",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"babel-loader": "^8.2.0",
"chai": "^4.3.6",
"cross-env": "^6.0.3",
"css-loader": "^6.7.0",
"cypress": "^12.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testcafe": "^0.2.1",
"extended-define-webpack-plugin": "^0.1.3",
"fork-ts-checker-webpack-plugin": "^6.2.1",
"html-webpack-plugin": "^5.5.0",
"image-webpack-loader": "^8.1.0",
"js-yaml": "^3.13.1",
"jsdom": "^15.2.1",
"mocha": "^6.1.4",
"nyc": "^15.0.0",
"prettier": "2.8.2",
"sass": "^1.49.7",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.0",
"testcafe": "^1.18.6",
"testcafe-browser-provider-saucelabs": "^1.9.0",
"testcafe-react-selectors": "^4.1.1",
"ts-node": "^10.2.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^3.7.2"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development webpack serve --inline --open --mode=development",
"lint": "eslint --ext=.js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --fix --ext=.js,.jsx,.ts,.tsx .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"test": "cross-env NODE_ENV=test mocha --require ts-node/register --exit --reporter spec testing/mocha.js app/**/*.spec.{j,t}s*",
"test:coverage": "nyc --extension .jsx --reporter=text npm test -- --exit",
"test:watch": "npm run test -- --watch --watch-extensions jsx --inspect",
"testcafe": "testcafe",
"testcafe:ci": "testcafe chrome:headless testcafe/*.js -c 3 --skip-js-errors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShelterTechSF/askdarcel-web.git"
},
"author": "ShelterTech",
"license": "GPL-3.0-or-later"
}