-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
101 lines (101 loc) · 3.11 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
{
"name": "phlask-react",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@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",
"@mui/icons-material": "5.4.2",
"@mui/material": "^5.6.2",
"@mui/styles": "^5.14.1",
"@reduxjs/toolkit": "^1.8.2",
"@vis.gl/react-google-maps": "^1.4.0",
"bootstrap": "^5.1.3",
"cypress": "^13.6.6",
"firebase": "^9.6.11",
"google-maps-react": "^2.0.6",
"popper.js": "^1.16.1",
"react": "^18.3.1",
"react-bootstrap": "^2.3.0",
"react-div-100vh": "^0.7.0",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-geocode": "^1.0.0-alpha.0",
"react-hook-form": "7.47.0",
"react-images-upload": "^1.2.8",
"react-places-autocomplete": "^7.3.0",
"react-redux": "^9.1.2",
"reselect": "^5.1.1",
"sass": "^1.50.1",
"react-touch-events": "^3.0.0"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"@chromatic-com/storybook": "^1.8.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.4.2",
"@storybook/test": "^8.2.9",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"pre-commit": "^1.2.2",
"prettier": "^2.6.2",
"storybook": "^8.2.9",
"vite": "^5.4.12",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1"
},
"scripts": {
"start": "vite",
"start:cypress": "VITE_CYPRESS_TEST=true yarn start",
"build": "vite build",
"testDataGen": "node cypress/testDataGenerator.js",
"test": "yarn testDataGen && cypress run",
"test:mobile": "cypress run --config-file cypress.mobile.config.js",
"generate-icons": "npx @svgr/cli --config-file=.svgrrc.json ./src/assets/icons --out-dir=./src/icons && yarn lint --fix",
"cypress": "cypress open",
"lint": "eslint \"**/*.{js,jsx}\" --quiet",
"format": "prettier \"src/**/*.{js,css,html}\" --write",
"serve": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"homepage": ".",
"description": "Code behind the PHLASK Web Map",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/phlask/phlask-map.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/phlask/phlask-map/issues"
}
}