-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.83 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
{
"name": "ai-content-factory",
"version": "1.0.0",
"main": "./build/server",
"repository": "[email protected]:vbss-io/ai-content-factory.git",
"author": "Vitor Bastos <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup --config",
"build:auth": "rollup --config src/auth/rollup.config.mjs",
"build:batch": "rollup --config src/batch/rollup.config.mjs",
"build:image": "rollup --config src/image/rollup.config.mjs",
"build:prompt": "rollup --config src/prompt/rollup.config.mjs",
"build:user": "rollup --config src/user/rollup.config.mjs",
"build:video": "rollup --config src/video/rollup.config.mjs",
"dev": "nodemon --config nodemon-dev.json",
"dev:auth": "nodemon --config src/auth/nodemon-dev.json",
"dev:batch": "nodemon --config src/batch/nodemon-dev.json",
"dev:image": "nodemon --config src/image/nodemon-dev.json",
"dev:prompt": "nodemon --config src/prompt/nodemon-dev.json",
"dev:user": "nodemon --config src/user/nodemon-dev.json",
"dev:video": "nodemon --config src/video/nodemon-dev.json",
"test": "jest",
"test:auth": "jest src/auth/tests",
"test:batch": "jest src/batch/tests",
"test:image": "jest src/image/tests",
"test:prompt": "jest src/prompt/tests",
"test:user": "jest src/user/tests",
"test:video": "jest src/video/tests",
"lint": "eslint ./src --ext .ts",
"start": "node ."
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/amqplib": "^0.10.5",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.2.1",
"eslint-plugin-no-relative-import-paths": "^1.5.4",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"rollup": "^4.22.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@azure/storage-blob": "^12.25.0",
"amqplib": "^0.10.4",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cron": "^3.1.7",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.6.3",
"multer": "^1.4.3",
"ts-node": "^10.9.2",
"zod": "^3.23.8"
}
}