-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.7 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.7 KB
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
{
"name": "crona",
"type": "commonjs",
"scripts": {
"build": "tsc --project tsconfig.build.json && npm run replace-paths && rimraf dist && npx move-file build dist",
"replace-paths": "npx tsconfig-replace-paths-new --project tsconfig.build.json -s ./src",
"dev": "cross-env NODE_ENV=dev nodemon -q",
"start": "cross-env NODE_ENV=prod node dist/main.js",
"build-and-start": "npm run build && npm run start",
"migrate:up": "knex migrate:latest",
"migrate:down": "knex migrate:rollback"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^20.16.5",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.15",
"dotenv": "^16.4.5",
"prettier": "^3.3.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-watch": "^1.0.8",
"tsconfig-replace-paths-new": "^1.0.5",
"typescript": "^5.6.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.693.0",
"@aws-sdk/lib-storage": "^3.592.0",
"@fastify/cookie": "^9.3.1",
"@fastify/formbody": "^7.4.0",
"@fastify/multipart": "^8.3.1",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"awilix": "^10.0.2",
"awilix-manager": "^5.4.0",
"axios": "^1.7.2",
"bcryptjs": "^3.0.2",
"chalk": "4.1.2",
"chokidar": "^3.6.0",
"cross-env": "^7.0.3",
"fastify": "4.27.0",
"fluent-ffmpeg": "^2.1.3",
"ioredis": "^5.4.1",
"knex": "^3.1.0",
"move-file-cli": "^3.0.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.14",
"nodemon": "^3.1.3",
"pg": "^8.13.0",
"rimraf": "^5.0.7",
"sharp": "^0.32.6",
"tsconfig-paths": "^4.2.0",
"uuid": "^11.1.0",
"winston": "^3.13.0",
"xlsx": "^0.18.5"
}
}