-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
{
"name": "tta-elastic",
"version": "1.0.0",
"description": "a realtime, searchable archive of trump tweets",
"engines": {
"node": "22.6.0"
},
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest run",
"start": "node ./server/index.js",
"build": "vite build",
"dev": "vite",
"lint": "eslint --quiet '{src,server}/**/*.{js,ts,jsx,tsx}'"
},
"author": "Brendan Brown",
"license": "ISC",
"dependencies": {
"@appbaseio/reactivesearch": "^3.1.1",
"apexcharts": "^3.10.1",
"bodybuilder": "^2.5.1",
"cors": "^2.8.5",
"date-fns": "^2.9.0",
"date-fns-tz": "^1.0.9",
"dotenv": "^16.4.5",
"elasticsearch": "^16.7.3",
"express": "^4.19.2",
"express-favicon": "^2.0.4",
"express-static-gzip": "^2.1.7",
"helmet": "^7.1.0",
"heroku-ssl-redirect": "^0.1.1",
"moment": "^2.30.1",
"node-cache": "^5.1.2",
"pg": "^8.12.0",
"rc-slider": "^9.5.1",
"react": "^16.12.0",
"react-apexcharts": "^1.3.3",
"react-dom": "^16.12.0",
"react-highlight-words": "^0.16.0",
"react-loading-skeleton": "^2.1.1",
"react-meta-tags": "^0.7.4",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-twitter-embed": "^3.0.3",
"sass": "^1.77.8",
"twitter": "^1.7.1"
},
"devDependencies": {
"@typescript-eslint/utils": "^8.1.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/eslint-plugin": "^1.0.3",
"cheerio": "^1.0.0-rc.10",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"jsdom": "^24.1.1",
"prettier": "^3.3.3",
"sass-embedded": "^1.77.8",
"vite": "^5.4.1",
"vitest": "^2.0.5"
},
"resolutions": {
"cheerio": "1.0.0-rc.10"
}
}