-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.51 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
{
"name": "backend",
"version": "1.0.0",
"description": "Simple Hyperion User Registration and Login System",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/Clearbryan/hyperion.git"
},
"scripts": {
"build": "tsc",
"frontend": "cd frontend && npm start",
"backend:dev": "nodemon --exec ts-node main.ts",
"backend:prod": "nodemon dist/main.js",
"client:install": "cd frontend && npm install",
"packages": "npm i && npm run client:install",
"server:install": "npm i -D",
"hyperion:dev": "concurrently \"npm run backend:dev\" \"npm run frontend\"",
"hyperion:prod": "concurrently \"npm run backend:prod\" \"npm run frontend\"",
"env:generate": "ts-node env-script"
},
"author": "Clearmind Bryan Chetekwe",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"formik": "^2.4.3",
"helmet": "^7.0.0",
"joi": "^17.10.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.0.0",
"mongoose": "^7.5.0",
"node-gyp": "^9.4.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/passport": "^1.0.12",
"@types/passport-jwt": "^3.0.9",
"concurrently": "^8.2.1",
"dotenv": "^16.3.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}