forked from tweetback/tweetback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.77 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
{
"name": "@tweetback/tweetback",
"version": "1.0.0",
"private": true,
"description": "Take ownership of your Twitter data and host your own Twitter archive.",
"scripts": {
"clean": "rm -rf .cache",
"import": "node database/import-from-archive.js",
"import-without-circles": "npm run import -- removecircletweets",
"fetch-new-data": "node database/fetchFromApi.js",
"build": "npx @11ty/eleventy --quiet --pathprefix=my_tweetback_archive",
"build:heavy": "NODE_OPTIONS=--max-old-space-size=12288 npx @11ty/eleventy --incremental --pathprefix=my_tweetback_archive",
"start": "npx @11ty/eleventy --quiet --serve --pathprefix=my_tweetback_archive",
"start:heavy": "NODE_OPTIONS=--max-old-space-size=12288 npx @11ty/eleventy --serve --pathprefix=my_tweetback_archive | tee buildlog2.txt",
"start:heavylog": "NODE_OPTIONS=--max-old-space-size=7168 DEBUG=* npx @11ty/eleventy --serve --pathprefix=my_tweetback_archive | tee buildlog2.txt",
"sizecheck": "du -sh _site"
},
"keywords": [],
"contributors": [
"Zach Leatherman <[email protected]> (https://zachleat.com/)",
"Eric Gallager <[email protected]> (https://linktr.ee/ericgallager)"
],
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-fetch": "^4.0.0",
"@11ty/eleventy-img": "^4.0.2",
"@tweetback/canonical": "^2.0.37",
"country-emoji": "^1.5.6",
"dotenv": "^16.3.1",
"emoji-regex": "^10.2.1",
"entities": "^4.5.0",
"lodash": "^4.17.21",
"numeral": "^2.0.6",
"pagefind": "^1.0.3",
"parse-domain": "^8.0.1",
"sentiment": "^5.0.2",
"sqlite3": "^5.1.6",
"swearjar": "^0.2.0",
"twitter-lite": "^1.1.0"
},
"dependencies": {
"@11ty/is-land": "^4.0.0",
"chartist": "^1.3.0"
}
}