-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.88 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.88 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
{
"name": "be-advanced",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"type": "commonjs",
"scripts": {
"start": "nodemon src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"typeorm": "typeorm-ts-node-commonjs",
"typeorm:run": "npm run typeorm migration:run -- -d ./src/config/data-source.ts",
"typeorm:generate": "npm run typeorm -- -d ./src/config/data-source.ts migration:generate ./src/migration/$npm_config_name",
"typeorm:create-migration": "npm run typeorm -- migration:create ./src/migration/$npm_config_name",
"typeorm:revert-migration": "npm run typeorm -- -d ./src/config/data-source.ts migration:revert",
"seed": "npx ts-node src/seeds/seed.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/redis": "^4.0.10",
"bcrypt": "^5.1.1",
"cloudinary": "^1.41.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-session": "^1.18.1",
"http-status-codes": "^2.3.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"mysql2": "^3.11.3",
"nodemon": "^3.1.7",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pino": "^9.5.0",
"pino-http": "^10.3.0",
"pino-pretty": "^11.3.0",
"redis": "^4.7.0",
"reflect-metadata": "^0.1.13",
"typeorm": "0.3.20"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.1",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/node": "^16.11.10",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"ts-node": "10.9.1",
"typescript": "4.5.2"
}
}