forked from seyouny/StatsDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "statsdash",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seyouny/StatsDash.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/seyouny/StatsDash/issues"
},
"homepage": "https://github.com/seyouny/StatsDash#readme",
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.7"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"animate.css": "^4.1.0",
"bootstrap": "^4.5.2",
"chart.js": "^2.9.3",
"emailjs": "^3.3.0",
"emailjs-com": "^2.6.3",
"express": "^4.17.1",
"firebase": "^7.18.0",
"font-awesome": "^4.7.0",
"if-env": "^1.0.4",
"mysql": "^2.18.1",
"mysql2": "2.1.0",
"node-sass": "^4.14.1",
"pg": "^8.3.3",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-confirm-alert": "^2.6.2",
"react-dom": "^16.13.1",
"react-player": "^2.6.1",
"react-router-dom": "^5.2.0",
"react-tilt": "^0.1.4",
"sequelize": "^6.3.4"
}
}