-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
55 lines (55 loc) · 1.76 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
{
"name": "bitcoin-search-engine",
"description": "Bitcoin related publications search engine",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "GENERATE_SOURCEMAP=false next dev",
"build": "GENERATE_SOURCEMAP=false next build",
"start": "GENERATE_SOURCEMAP=false next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier:check": "prettier --check . --ignore-path .gitignore",
"prettier:fix": "prettier --write . --ignore-path .gitignore"
},
"dependencies": {
"@bitcoin-dev-project/bdp-ui": "^1.5.2",
"@chakra-ui/react": "^2.0.0",
"@elastic/elasticsearch": "^8.8.0",
"@elastic/react-search-ui": "1.20.2",
"@elastic/react-search-ui-views": "1.20.2",
"@elastic/search-ui": "1.20.2",
"@elastic/search-ui-app-search-connector": "1.20.2",
"@elastic/search-ui-elasticsearch-connector": "1.20.2",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/geist-sans": "^5.0.2",
"@netlify/plugin-nextjs": "^4.40.1",
"@tanstack/react-query": "^4.29.12",
"autoprefixer": "10.4.14",
"framer-motion": "^6.5.1",
"html-to-react": "^1.5.0",
"next": "13.4.4",
"node-sass": "^8.0.0",
"postcss": "8.4.24",
"rc-pagination": "^3.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hotkeys-hook": "^4.3.2",
"react-icons": "^4.7.1",
"sanitize-html": "^2.8.0",
"sass": "^1.62.1",
"tailwindcss": "3.3.2"
},
"devDependencies": {
"@types/node": "^20.2.5",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"eslint": "^8.42.0",
"eslint-config-next": "^13.4.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
}
}