-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.59 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 4.59 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "foryou",
"version": "1.0.0",
"description": "A youtube data api web app to visualize personal youtube data",
"main": "src/server/index.ts",
"engines": {
"node": "22.x"
},
"scripts": {
"start": "cross-env NODE_ENV=production node dist/server/index.js",
"stage": "npm run build && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"client": "cross-env NODE_ENV=development webpack serve --config config/webpack.dev.js",
"server": "nodemon --config config/nodemon.config.json",
"build:client": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
"build:server": "tsc --project src/server/tsconfig.json && tsc-alias -p src/server/tsconfig.json",
"build": "npm run build:client && npm run build:server",
"format": "prettier --ignore-path .gitignore --write \"./**/*.+(js|jsx|ts|tsx|css|scss|md|json)\"",
"lint": "eslint -c .eslintrc.js --ignore-path .eslintignore --ext .js,.ts,.tsx ./src/**/*.{ts,tsx}",
"test": "jest --config config/jest.config.ts --watchAll --detectOpenHandles"
},
"keywords": [
"youtube",
"api",
"concept",
"poc",
"personal",
"react",
"nodejs",
"mern",
"typescript",
"foryou"
],
"author": "Alain Moratalla",
"license": "MIT",
"devDependencies": {
"@svgr/webpack": "^6.3.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/cron": "^2.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.18",
"@types/node-fetch": "^2.6.1",
"@types/puppeteer": "^5.4.6",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"@types/react-transition-group": "^4.4.12",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.6.0",
"css-minimizer-webpack-plugin": "^4.0.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-config-react-app": "^7.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^50.7.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-unicorn": "^41.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.6.1",
"module-alias": "^2.2.2",
"prettier": "^2.5.1",
"sass": "^1.89.1",
"sass-loader": "^16.0.5",
"style-loader": "^3.3.1",
"supertest": "^6.2.2",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.2.0",
"tslint": "^6.1.3",
"typescript": "^5.8.3",
"typescript-plugin-css-modules": "^5.1.0",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.3.1",
"@reduxjs/toolkit": "^2.8.2",
"@types/command-line-args": "^5.2.0",
"@upstash/redis": "^1.35.0",
"colors": "^1.4.0",
"command-line-args": "^5.2.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cron": "^2.3.1",
"cross-env": "^7.0.3",
"dotenv": "^16.5.0",
"express": "^4.17.3",
"framer-motion": "^12.16.0",
"google-auth-library": "^9.15.1",
"googleapis": "^149.0.0",
"helmet": "^8.1.0",
"http-status-codes": "^2.2.0",
"jet-logger": "^1.3.1",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.7",
"process": "^0.11.10",
"puppeteer": "^24.10.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.6.2",
"react-transition-group": "^4.4.5",
"ts-loader": "^9.4.3"
},
"browser": {
"[module-name]": false
}
}