-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.21 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
{
"name": "swipe-tube_be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf build && tsc -p tsconfig.json",
"start": "cross-env NODE_ENV=production node ./build/app",
"watch": "nodemon -L -e ts -w src -x npm run watch:serve",
"debug": "node --inspect -r ts-node/register/transpile-only src/app",
"watch:serve": "ts-node src/app",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier --write ./src",
"migrate": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo",
"test:audit": "npm audit",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goldhumorist/swipe-tube_be.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/goldhumorist/swipe-tube_be/issues"
},
"homepage": "https://github.com/goldhumorist/swipe-tube_be#readme",
"dependencies": {
"@aws-sdk/client-s3": "3.363.0",
"@fastify/cors": "8.3.0",
"@fastify/formbody": "7.4.0",
"@fastify/helmet": "11.0.0",
"@fastify/multipart": "7.7.3",
"@ffmpeg-installer/ffmpeg": "1.1.0",
"@ffprobe-installer/ffprobe": "2.1.0",
"aws-sdk": "2.1409.0",
"bcrypt": "5.1.0",
"config": "3.3.9",
"dotenv": "16.3.1",
"fastify": "4.20.0",
"fluent-ffmpeg": "2.1.2",
"jsonwebtoken": "9.0.1",
"livr": "2.7.1",
"pg": "8.11.1",
"pino": "8.14.1",
"pino-pretty": "10.0.0",
"sequelize": "6.32.1",
"sequelize-typescript": "2.1.5",
"uuid": "9.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.6",
"@types/bcrypt": "5.0.0",
"@types/config": "3.3.0",
"@types/fastify-cors": "2.1.0",
"@types/fluent-ffmpeg": "2.1.21",
"@types/jsonwebtoken": "9.0.2",
"@types/node": "20.3.2",
"@types/sequelize": "4.28.15",
"@types/uuid": "9.0.2",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"cross-env": "7.0.3",
"eslint": "8.43.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "^8.0.0",
"nodemon": "3.0.1",
"sequelize-cli": "6.6.1",
"ts-node": "10.9.1",
"typescript": "5.1.6"
}
}