forked from OpenBeta/open-tacos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
145 lines (145 loc) · 3.84 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "openbeta-climbing-route-catalog",
"description": "Open source climbing route catalog",
"version": "1.0.0",
"author": "OpenBeta <[email protected]>",
"dependencies": {
"@algolia/autocomplete-js": "^1.6.2",
"@algolia/autocomplete-theme-classic": "^1.5.1",
"@apollo/client": "^3.5.10",
"@auth0/auth0-react": "^1.6.0",
"@babel/plugin-proposal-decorators": "^7.15.8",
"@babel/runtime": "^7.17.2",
"@danmarshall/deckgl-typings": "^4.9.15",
"@deck.gl/aggregation-layers": "^8.7.0",
"@deck.gl/core": "^8.7.0 ",
"@deck.gl/layers": "^8.7.0",
"@deck.gl/react": "^8.7.0",
"@headlessui/react": "^1.6.0",
"@heroicons/react": "^1.0.6",
"@math.gl/web-mercator": "^3.5.6",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^12.0.7",
"@openbeta/remark-slate": "^1.8.2",
"@openbeta/sandbag": "^0.0.11",
"@turf/bbox": "^6.5.0",
"@udecode/plate": "^9.1.2",
"@udecode/zustood": "^0.4.4",
"algoliasearch": "^4.11.0",
"awesome-debounce-promise": "^2.1.0",
"axios": "^0.24.0",
"btoa": "^1.2.1",
"buffer": "^6.0.3",
"classnames": "^2.3.1",
"dayjs": "^1.10.6",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"front-matter": "^4.0.2",
"graphql": "^16.2.0",
"immer": "^9.0.12",
"js-yaml": "^4.1.0",
"mapbox-gl": "^2.7.0",
"next": "^12.1.5",
"nprogress": "^0.2.0",
"query-string": "^7.0.1",
"rc-slider": "^10.0.0-alpha.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-dropzone": "^11.4.2",
"react-helmet": "6.1.0",
"react-imgix": "^9.5.0",
"react-map-gl": "^7.0.10",
"react-paginate": "^8.1.2",
"react-placeholder": "^4.1.0",
"react-responsive": "^9.0.0-beta.6",
"recharts": "^2.1.9",
"remark-parse": "^10.0.0",
"slate": "^0.72.3",
"slate-history": "^0.66.0",
"slate-hyperscript": "^0.67.0",
"slate-react": "^0.72.1",
"slugify": "^1.5.3",
"styled-components": "^5.3.3",
"supercluster": "^7.1.4",
"typesense": "^1.2.1",
"unified": "^10.1.0",
"yup": "^0.32.9",
"zustand": "^3.7.1"
},
"keywords": [
"rock climbing",
"climbing",
"openbeta"
],
"license": "AGPL-3.0-or-later",
"scripts": {
"lint": "yarn run ts-standard",
"build": "next build",
"dev": "next dev",
"dev-local": "NEXT_PUBLIC_API_SERVER=http://localhost:4000 yarn dev",
"local": "NEXT_PUBLIC_API_SERVER=http://localhost:4000 node ./src/server.js ",
"develop": "next dev",
"start": "next start",
"test": "jest",
"prepare": "husky install"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.1",
"@types/js-yaml": "^4.0.5",
"@types/react": "^17.0.38",
"@types/supercluster": "^5.0.3",
"autoprefixer": "^10.4.1",
"babel-plugin-inline-react-svg": "^2.0.1",
"eslint-plugin-jest": "^25.3.4",
"husky": "^7.0.4",
"jest": "^27.5.1",
"postcss": "^8.4.5",
"react-test-renderer": "^18.0.0",
"tailwindcss": "^3.0.23",
"ts-jest": "^27.1.4",
"ts-standard": "^11.0.0",
"typescript": "^4.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/OpenBeta/open-tacos"
},
"bugs": {
"url": "https://github.com/OpenBeta/open-tacos/issues"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not chrome < 51",
"not safari < 10",
"not ie < 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"ts-standard": {
"ignore": [
"build"
],
"plugins": [
"jest"
],
"envs": {
"browser": true,
"es2021": true,
"jest/globals": true
},
"files": [
"src/**/*.js",
"src/**/*.ts",
"src/**/*.tsx"
]
}
}