forked from theirc/signpost-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.32 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
{
"name": "signpost-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.mjs",
"start": "next start",
"prepare": "husky install",
"lint": "next lint --max-warnings=0",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test 'yarn dev --port 3003' :3003 cypress",
"e2e:headless": "start-server-and-test 'yarn dev --port 3003' :3003 cypress:headless"
},
"dependencies": {
"@algolia/autocomplete-core": "^1.7.1",
"@algolia/autocomplete-js": "^1.7.1",
"@algolia/client-search": "^4.14.2",
"@changey/react-leaflet-markercluster": "^4.0.0-rc1",
"@directus/sdk": "^10.3.3",
"@ircsignpost/signpost-base": "15.22.0",
"@next/env": "^12.2.4",
"@react-spring/web": "^9.5.4",
"@vercel/og": "^0.5.6",
"algoliasearch": "^4.14.2",
"antd": "^4.23.1",
"geolib": "^3.3.4",
"html-dom-parser": "^3.1.2",
"html-react-parser": "^3.0.4",
"http-status-codes": "^2.2.0",
"leaflet": "^1.9.1",
"leaflet.markercluster": "^1.5.3",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"next": "12.3.0",
"next-share": "^0.19.0",
"next-sitemap": "^3.1.17",
"next-with-less": "^2.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-instantsearch-hooks-web": "^6.32.0",
"react-leaflet": "^4.1.0",
"usehooks-ts": "^2.6.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@directus/sdk": "^10.3.3",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/leaflet": "^1.8.0",
"@types/node": "18.7.17",
"@types/react": "18.0.19",
"@types/react-dom": "18.0.6",
"check-peer-dependencies": "^4.1.0",
"cypress": "^10.7.0",
"eslint": "^8.23.1",
"eslint-config-next": "^12.3.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"next-with-less": "^2.0.5",
"postcss": "^8.4.16",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.7.1",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.8",
"typescript": "4.8.3",
"webpack": "^5.74.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}