-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
111 lines (111 loc) · 3.36 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "deck.rocks",
"version": "1.0.0",
"description": "fun side project for generating pitch decks using GPT-3",
"main": "./dist/index.js",
"type": "node12",
"scripts": {
"format": "prettier --write './{src,assets/js}/**/*'",
"build": "tsc",
"build:watch": "tsc --watch",
"start": "pm2-runtime start . -i $WEB_CONCURRENCY",
"workers": "pm2-runtime start ./dist/worker.js -i $WORKER_CONCURRENCY --max-memory-restart 1850M",
"stop": "pm2-runtime stop all",
"start:dev": "tsnd --rs --cls src/index.ts",
"workers:dev": "tsnd --rs --cls src/worker.ts",
"prepare": "husky install"
},
"engines": {
"node": "18.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/creatorrr/deck.rocks.git"
},
"author": "Diwank Singh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/creatorrr/deck.rocks/issues"
},
"homepage": "https://github.com/creatorrr/deck.rocks#readme",
"devDependencies": {
"@mapbox/node-pre-gyp": "^1.0.9",
"@sentry/types": "^7.8.0",
"@types/bull": "^3.15.8",
"@types/classnames": "^2.3.1",
"@types/dotenv": "^8.2.0",
"@types/glob": "^7.2.0",
"@types/ioredis": "^4.28.10",
"@types/koa": "^2.13.4",
"@types/koa__router": "^8.0.11",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa-conditional-get": "^2.0.0",
"@types/koa-etag": "^3.0.0",
"@types/koa-helmet": "^6.0.4",
"@types/koa-ratelimit": "^4.2.4",
"@types/koa-static-cache": "^5.1.1",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@adobe/node-fetch-retry": "github:creatorrr/node-fetch-retry",
"@koa/router": "^11.0.1",
"@sentry/node": "^7.8.0",
"@sentry/tracing": "^7.8.0",
"@seregpie/vector-math": "^1.8.0",
"@tensorflow-models/universal-sentence-encoder": "^1.3.3",
"@tensorflow/tfjs": "^3.18.0",
"@tensorflow/tfjs-node": "^3.18.0",
"axios": "^0.27.2",
"axios-retry": "^3.3.1",
"bull": "^4.8.4",
"classnames": "^2.3.1",
"compromise": "^14.4.0",
"cool-ascii-faces": "^1.3.4",
"cross-fetch": "^3.1.5",
"css-to-style": "^1.4.0",
"cyrb53": "^1.0.0",
"dictionary-en": "^3.2.0",
"dotenv": "^16.0.1",
"funnies": "github:creatorrr/funnies",
"glob": "^8.0.3",
"grammarify": "^2.0.1",
"inspirational-quotes": "^2.0.1",
"ioredis": "^5.1.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-conditional-get": "^3.0.0",
"koa-etag": "^4.0.0",
"koa-helmet": "^6.1.0",
"koa-ratelimit": "^5.0.1",
"koa-static-cache": "^5.1.4",
"koa-xss-sanitizer": "^1.0.0",
"lodash": "^4.17.21",
"messagepack": "^1.1.12",
"millify": "^5.0.0",
"node-memoize": "^1.0.5",
"object-hash": "^3.0.0",
"openai": "^3.0.0",
"pexels": "^1.3.0",
"pm2": "^5.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"retext": "^8.1.0",
"retext-contractions": "^5.2.0",
"retext-diacritics": "^4.2.0",
"retext-emoji": "^8.1.0",
"retext-english": "^4.1.0",
"retext-profanities": "^7.2.1",
"retext-quotes": "^5.2.0",
"retext-spell": "^5.1.0",
"retext-stringify": "^3.1.0",
"retext-usage": "^0.5.0",
"superb": "^4.0.0",
"unified": "^10.1.2"
}
}