-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.55 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
{
"name": "sgb-portfolio-mern",
"homepage": "https://seabAu.github.io/sgb-portfolio-mern",
"repository": "github.com:seabAu/sgb-portfolio-mern",
"author": {
"name": "Sean Brown",
"url": "https://seabAu.github.com/"
},
"version": "1.0.0",
"description": "Portfolio",
"main": "index.js",
"engines": {
"node": "16.17.1",
"npm": "8.15.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"clientbuild": "npm build --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"startapp": "concurrently \"npm run server\" \"npm run client\"",
"buildapp": "concurrently \"npm run server\" \"npm run clientbuild\"",
"start": "node server.js",
"heroku postbuild": "NPM_CONFIG_PRODUCTION=false npm install -prefix client && npm run build --prefix client",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "^1.9.2",
"axios": "^1.3.2",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"gh-pages": "^5.0.0",
"http-proxy-middleware": "^2.0.6",
"mongoose": "^6.9.0",
"mongoose-autopopulate": "^1.0.0",
"nodemon": "^2.0.20",
"react-redux": "^8.0.5",
"react-tabs": "^6.0.0",
"redux": "^4.2.1"
}
}