-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"name": "bank-application-api",
"version": "1.0.0",
"description": "Simple Express API",
"main": "dist/server/index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc && npm run client:build",
"start": "node dist/server/index.js",
"dev": "tsx watch server/index.ts",
"client:dev": "webpack serve --open",
"client:build": "webpack --mode production",
"dev:all": "concurrently -n server,client -c blue,green \"npm run dev\" \"npm run client:dev\"",
"admin:promote": "tsx server/scripts/promoteAdmin.ts"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^9.2.0",
"@mui/material": "^9.2.0",
"bcryptjs": "^3.0.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.3",
"mongodb": "^7.5.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-router": "^8.3.0",
"serverless-http": "^4.0.0",
"swagger-ui-express": "^5.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.162",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^26.1.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/swagger-ui-express": "^4.1.8",
"concurrently": "^10.0.4",
"html-webpack-plugin": "^5.6.8",
"ts-loader": "^9.6.2",
"tsx": "^4.23.1",
"typescript": "^5.9.3",
"webpack": "^5.109.0",
"webpack-cli": "^7.2.1",
"webpack-dev-server": "^6.0.0"
}
}