-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "repost",
"version": "1.0.0",
"description": "Repost content from reddit to instagram",
"scripts": {
"build": "tsc -p .",
"test": "ts-mocha -p tsconfig.json test/**/*.ts --exit",
"test:git": " NODE_ENV=CI ts-mocha -p tsconfig.json test/**/*.ts --exit",
"dev": "node scripts/run-dev.js",
"start": "NODE_ENV=production node build/src/app.js",
"deploy": "git push heroku master"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KaindlJulian/repost.git"
},
"contributors": [
"Matthias Herzog",
"Julian Kaindl"
],
"engines": {
"node": ">=14.8.0"
},
"dependencies": {
"@ffprobe-installer/ffprobe": "^1.1.0",
"arg": "^4.1.3",
"chrome-finder": "^1.0.7",
"chromium-all-codecs-bin": "^0.1.0",
"cron": "^1.8.2",
"cron-validator": "^1.1.1",
"dotenv": "^8.2.0",
"fastify": "^2.15.1",
"fastify-auth": "^0.7.2",
"fastify-cors": "^3.0.3",
"fastify-swagger": "^2.6.0",
"node-cache": "^5.1.1",
"node-fetch": "^2.6.1",
"pm2": "^4.5.4",
"puppeteer-core": "^7.1.0",
"random": "^2.2.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/cron": "^1.7.2",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.11",
"@types/node-fetch": "^2.5.7",
"@types/puppeteer": "^5.4.3",
"@types/random": "^2.1.1",
"@types/winston": "^2.4.4",
"mocha": "^7.2.0",
"ts-mocha": "^6.0.0",
"typescript": "^3.9.5"
}
}