-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "rev",
"version": "1.0.0",
"description": "Review website for student accomodation",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "node server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Simran Bhadani",
"license": "MIT",
"devDependencies": {
"nodemon": "^2.0.7",
"prettier": "2.2.1"
},
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"classnames": "^2.2.6",
"client": "./client",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"create-react-app": "^4.0.1",
"express": "^4.17.2",
"jquery": "^3.5.1",
"jquery-scrollto": "^1.4.6",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.10",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"react-loader-spinner": "^4.0.0",
"react-promise-tracker": "^2.1.0",
"request": "^2.79.0",
"validator": "^13.5.2"
},
"engines": {
"node": "14.x"
}
}