-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
81 lines (81 loc) · 2.63 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
{
"name": "twitter-search",
"version": "1.0.0",
"private": true,
"description": "Algolia for searching your Tweets.",
"repository": "transitive-bullshit/twitter-search",
"author": "Travis Fischer <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"deps": "run-s deps:*",
"deps:update": "[ -z $GITHUB_ACTIONS ] && yarn add static-tweets react-static-tweets || echo 'Skipping deps:update on CI'",
"deps:link": "[ -z $GITHUB_ACTIONS ] && yarn link static-tweets react-static-tweets || echo 'Skipping deps:link on CI'",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check",
"posttest": "run-s build"
},
"dependencies": {
"@chakra-ui/core": "^0.7.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"algoliasearch": "^4.8.5",
"cors": "^2.8.5",
"date-fns": "^2.17.0",
"emotion-theming": "^10.0.27",
"fathom-client": "^3.0.0",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.pick": "^4.4.0",
"next": "^10.0.6",
"p-map": "^4.0.0",
"p-retry": "^4.3.0",
"prop-types": "^15.7.2",
"qs": "^6.9.3",
"query-string": "^6.14.0",
"react": "^17.0.1",
"react-block-image": "^1.0.0",
"react-dom": "^17.0.1",
"react-instantsearch-dom": "^6.4.0",
"react-masonry-css": "^1.0.14",
"react-process-string": "^1.2.0",
"react-static-tweets": "^0.2.6",
"react-tweet-embed": "^1.2.2",
"static-tweets": "^0.2.1",
"swr": "^0.4.2",
"twemoji": "^12.1.6",
"twitter-lite": "^1.1.0",
"use-query-params": "^1.1.9"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.0.6",
"@types/classnames": "^2.2.10",
"@types/node": "^14.14.22",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"typescript": "^4.1.3"
}
}