-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.45 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.45 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "wimm-backend",
"version": "1.0.0",
"description": "Backend app for the wimm",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run serve",
"serve": "node -r dotenv/config build/server.js",
"build": "npm run clean && npm run build-ts",
"watch": "npx concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon -r dotenv/config build/server.js",
"clean": "rimraf ./build",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"eslint": "eslint . --ext .js,.ts",
"upgrade": "npm update --save-dev && npm update --save",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/janishar/wimm-backend-typescript.git"
},
"author": "Janishar Ali",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.9.0",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^4.21.2",
"firebase-admin": "^12.7.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"metascraper": "^5.46.17",
"metascraper-author": "^5.46.17",
"metascraper-description": "^5.46.17",
"metascraper-image": "^5.46.17",
"metascraper-publisher": "^5.46.17",
"metascraper-title": "^5.46.17",
"metascraper-youtube": "^5.46.17",
"moment": "^2.30.1",
"mongoose": "^8.15.0",
"multer": "^1.4.5-lts.1",
"qs": "^6.14.0",
"redis": "^4.7.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.18",
"@types/express": "^4.17.22",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/lodash": "^4.17.17",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/newrelic": "^9.14.8",
"@types/newrelic__winston-enricher": "^0.1.5",
"@types/node": "^20.17.50",
"@types/request": "^2.48.12",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"colors": "^1.4.0",
"dotenv": "^16.5.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"supertest": "^6.3.4",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}