-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "api-backend",
"version": "3.0.0",
"description": "A starter express api backend that can also serve a React (CRA) client",
"main": "index.js",
"scripts": {
"start": "node api/app.js",
"dev": "nodemon -r dotenv/config api/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && npm install && npm run build"
},
"author": "Edgardo Molina",
"license": "MIT",
"dependencies": {
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"bootstrap": "^5.3.3",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"firebase": "^10.7.1",
"jquery": "^3.7.1",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"popper.js": "^1.16.1",
"react-bootstrap": "^2.10.2",
"react-firebase-hooks": "^5.1.1",
"react-markdown": "^9.0.1",
"react-paginate": "^8.2.0",
"react-pdf": "^7.6.0",
"react-pdf-js": "^5.1.0",
"sequelize": "^6.33.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"dotenv": "^16.3.1",
"nodemon": "^3.0.1"
},
"nodemonConfig": {
"ignore": [
"client/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hhkbhamza/CTP-CUNYSphere.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/hhkbhamza/CTP-CUNYSphere/issues"
},
"homepage": "https://github.com/hhkbhamza/CTP-CUNYSphere#readme"
}