-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.77 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
{
"name": "youtube-api",
"version": "1.0.0",
"main": "index.js",
"author": "sarath",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --ignore sessions --exec ts-node -r tsconfig-paths/register src/app.ts",
"build": "tsc",
"lint": "eslint . --ext ts",
"build:client": "esbuild src/app/index.tsx --bundle --outfile=dist/bundle.js --loader:.js=jsx",
"build:watch": "nodemon --ignore dist --watch src/app --ext tsx --exec \"esbuild src/app/index.tsx --bundle --outfile=dist/bundle.js --loader:.js=jsx\""
},
"dependencies": {
"antd": "^5.17.4",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"esbuild": "^0.21.3",
"express": "^4.17.21",
"express-session": "^1.18.0",
"google-auth-library": "^9.9.0",
"googleapis": "^135.0.0",
"morgan": "^1.10.0",
"node-dependency-injection": "^3.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"session-file-store": "^1.5.0"
},
"devDependencies": {
"@types/morgan": "^1.9.9",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/session-file-store": "^1.2.5",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.1.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"nodemon": "^3.1.0",
"prettier": "^2.3.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5"
}
}