-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "Personal_Portfolio",
"version": "1.0.0",
"engines": {
"node": "13.9.0",
"npm": "6.14.6"
},
"description": "Personal Portfolio Page",
"scripts": {
"start": "node index.js",
"dev-start": "concurrently -p \"[{name}]\" -n \"CLIENT,SERVER\" -c \"bgBlue.bold,bgMagenta.bold,bgGreen.bold\" \"yarn run start:client\" \"yarn run start:server\"",
"start:server": "nodemon index.js",
"start:client": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"author": "Andrew Baldwin",
"license": "UNLICENSED",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/lab": "^4.0.0-alpha.56",
"concurrently": "^5.3.0",
"express": "^4.17.1",
"mongodb": "^3.6.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"path": "^0.12.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"react-slick": "^0.27.9",
"serve": "^11.3.2",
"styled-components": "^5.1.1"
}
}