-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.15 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.15 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
{
"name": "encyclone",
"version": "1.0.0",
"description": "An app that feeds users articles from The Encyclopedia Brittanica based on algorithmic user profiles.",
"main": "server/server.js",
"homepage": "",
"scripts": {
"build": "cd client && npm run build",
"dev": "react-scripts start",
"eject": "react-scripts eject",
"heroku-postbuild": "npm run build",
"install": "cd server && npm i && cd ../client && npm i",
"start": "node server/server.js",
"start:prod": "node server/server.js",
"start:dev": "concurrently \"cd server && npx nodemon server\" \"cd client && npm start\"",
"seed": "cd server && npm run seed",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^7.6.0"
},
"dependencies": {
"create-react-app": "^1.2.1",
"dotenv": "^16.0.3",
"fast-xml-parser": "^4.1.2",
"google-auth-library": "^8.7.0",
"node-fetch": "^3.3.0",
"react-burger-menu": "^3.0.9",
"react-google-login": "^5.2.2",
"serve": "^14.2.0",
"styled-components": "^5.3.6",
"xml-extract": "^1.1.0"
}
}