-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
60
61
62
63
64
65
66
67
{
"name": "reactreadinglist-auth-server",
"version": "1.0.0",
"description": "Full Stack React App with Authentication",
"proxy": "http://localhost:3000/",
"main": "server/server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server/server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"lint": "eslint '**/canary.test.js'",
"seed": "node server/scripts/seedDB.js",
"test": "mocha",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"engines": {
"node": "8.9.4",
"npm": "5.6.x",
"yarn": "1.4.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.0.2",
"create-react-context": "^0.3.0",
"eslint-config-prettier": "^6.5.0",
"kind-of": "^6.0.3",
"mini-create-react-context": "^0.3.2",
"minimist": "^1.2.6",
"mocha": "^10.7.0",
"nodemon": "^3.1.4",
"react-popper": "^1.3.5",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-transition-group": "^4.3.0",
"reactstrap": "^8.2.0"
},
"dependencies": {
"axios": "^0.28.0",
"bcryptjs": "^2.4.3",
"chai": "^4.2.0",
"connect-mongo": "^3.2.0",
"dotenv": "^8.2.0",
"express": "^4.21.2",
"express-session": "^1.18.1",
"if-env": "^1.0.4",
"mongoose": "^6.13.5",
"morgan": "^1.9.1",
"npm-force-resolutions": "0.0.3",
"passport": "^0.6.0",
"passport-local": "^1.0.0"
},
"resolutions": {
"minimist": "^1.2.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdb443/googlebooks.git"
},
"bugs": {
"url": "https://github.com/jdb443/googlebooks/issues"
},
"homepage": "https://github.com/jdb443/googlebooks#readme"
}