-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.28 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
{
"name": "feedbackmanagerserver",
"version": "1.0.0",
"description": "This is a web application to enable you to fill out a feedback form and then have it rendered on the screen. This is backend handles api calls and interacting with a MongoDB database mainly.",
"homepage": "https://github.com/JamesBarnes48/FeedbackManagerServer#readme",
"bugs": {
"url": "https://github.com/JamesBarnes48/FeedbackManagerServer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesBarnes48/FeedbackManagerServer.git"
},
"license": "ISC",
"author": "james barnes",
"type": "commonjs",
"main": "server.js",
"scripts": {
"dev": "ts-node-dev --respawn --clear --transpile-only --ignore-watch node_modules ./src/server.ts",
"build": "rimraf ./dist && tsc",
"start": "node dist/server.js"
},
"dependencies": {
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.16.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.1",
"@types/node": "^22.15.18",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}