-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.51 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "kwiksync",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"migration:generate": "NODE_ENV=development ts-node -r tsconfig-paths/register node_modules/typeorm/cli.js migration:generate -d src/config/database.ts",
"migration:run": "NODE_ENV=production tsc --p tsconfig.migrations.json && node node_modules/typeorm/cli.js migration:run -d dist/migrations/config/database.js",
"migration:revert": "npx typeorm migration:revert -d dist/migrations/config/database.js",
"migration:show": "typeorm-ts-node-commonjs migration:show -d src/config/database.ts",
"start:frontend": "webpack serve --mode development --env development --config webpack.frontend.config.js",
"build:frontend": "webpack --mode production --env production --config webpack.frontend.config.js",
"build:backend": "webpack --mode production --env production --config webpack.backend.config.js --env TS_NODE_PROJECT=tsconfig.backend.json",
"build": "npm run build:frontend && npm run build:backend",
"dev": "concurrently \"npm run start:frontend\" \"npm run build:backend && nodemon --config nodemon.json ./dist/server-bundle.js\"",
"start": "node ./dist/server-bundle.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.722.0",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.1.10",
"@mui/material": "^6.1.9",
"@stripe/react-stripe-js": "^3.1.1",
"axios": "^1.7.8",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"concurrently": "^9.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"css-loader": "^7.1.2",
"dotenv": "^16.4.7",
"express": "^4.21.1",
"express-validator": "^7.2.0",
"framer-motion": "^11.14.4",
"html-webpack-plugin": "^5.5.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.468.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.16",
"nodemon": "^3.1.7",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.13.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.5.1",
"react-router-dom": "^7.0.1",
"recharts": "^2.14.1",
"reflect-metadata": "^0.1.13",
"stripe": "^17.5.0",
"style-loader": "^4.0.0",
"toast": "^0.5.4",
"ts-node": "^10.9.2",
"typeorm": "^0.3.17",
"uuid": "^11.0.4",
"webpack-node-externals": "^3.0.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/crypto-js": "^4.2.2",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.2",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.17",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"copy-webpack-plugin": "^12.0.2",
"dotenv-webpack": "^8.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"tailwindcss": "^3.4.16",
"ts-loader": "^9.5.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}