-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.91 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.91 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
{
"name": "fyp-api",
"version": "1.0.0",
"description": "FINAL YEAR PROJECT (WEB APPLICATION FOR GEOSPATIAL INDUSTRY)",
"homepage": "https://github.com/rajman01/fyp-api#readme",
"bugs": {
"url": "https://github.com/rajman01/fyp-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rajman01/fyp-api.git"
},
"license": "ISC",
"author": "RAJI",
"type": "commonjs",
"main": "dist/main/server.js",
"scripts": {
"prettier": "npx prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && copyfiles -u 1 src/**/*.html dist/ && tsc -p tsconfig-build.json",
"build:watch": "npm run build -- --watch",
"dev": "nodemon -L --watch ./dist ./dist/main/server.js",
"start": "node dist/main/server.js"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.888.0",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"google-auth-library": "^10.3.0",
"handlebars": "^4.7.8",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"moment": "^2.30.1",
"mongoose": "^8.16.4",
"phone": "^3.1.66",
"rand-token": "^1.0.1",
"redis": "^5.6.0",
"resend": "^4.7.0",
"validatorjs": "^3.22.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.7.10",
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/crypto-js": "^4.2.2",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.1.0",
"@types/validatorjs": "^3.15.5",
"copyfiles": "^2.4.1",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"_moduleAliases": {
"@domain": "dist/domain",
"@use-cases": "dist/use-cases",
"@infra": "dist/infrastructure",
"@main": "dist/main",
"@adapters": "dist/adapters",
"@utils": "dist/utils"
}
}