-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.01 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
68
69
70
{
"name": "shell",
"version": "1.0.0",
"description": "dashboard for shellhacks 2019",
"homepage": "https://dashboard.shellhacks.net",
"author": "jehf k. denezaire <[email protected]>",
"repository": "https://github.com/UPE-FIU/Shell.git",
"license": "MIT",
"private": true,
"main": "server.js",
"scripts": {
"dev": "react-scripts start",
"start": "yarn build && pm2 start --watch",
"restart": "yarn build && pm2 restart Dashboard",
"stop": "pm2 stop Dashboard",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-regular-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"axios": "^0.18.0",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"finalhandler": "^1.1.2",
"formik": "^1.5.1",
"formik-error-focus": "^1.0.0",
"google-libphonenumber": "^3.2.3",
"moment": "^2.24.0",
"pm2": "^3.5.1",
"qrcode.react": "^0.9.3",
"query-string": "^6.8.2",
"react": "^16.8.6",
"react-addons-update": "^15.6.2",
"react-dom": "^16.8.6",
"react-google-recaptcha": "^2.0.0-rc.1",
"react-markdown": "^4.1.0",
"react-medium-image-zoom": "^3.1.0",
"react-number-format": "^4.0.8",
"react-recaptcha-v3": "^1.1.0",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.8",
"react-scroll": "^1.7.12",
"react-scroll-horizontal": "^1.6.2",
"react-select": "^3.0.4",
"react-spinners": "^0.5.5",
"serve-static": "^1.14.1",
"yup": "^0.27.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"all-contributors-cli": "^6.9.0"
}
}