-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.76 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.76 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
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
{
"name": "streamflow",
"version": "1.1.0",
"description": "Full Stack React App with Authentication for Project Management",
"main": "server/server.js",
"proxy": "http://localhost:3001/",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server/server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && yarn install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"engines": {
"node": "12.10.0",
"npm": "6.11.3",
"yarn": "1.19.1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.4"
},
"dependencies": {
"avataaars": "^1.2.2",
"axios": "^0.19.2",
"babel": "^6.23.0",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"bulma": "^0.9.2",
"components": "^0.1.0",
"concurrently": "^5.2.0",
"connect-mongo": "^2.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"if-env": "^1.0.4",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"mongoose": "^5.9.14",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react-bulma-components": "^4.0.3",
"react-datepicker": "^3.8.0",
"react-helmet": "^6.1.0",
"react-minimal-pie-chart": "^8.2.0",
"react-modal": "^3.13.1",
"react-moment": "^1.1.1",
"react-select": "^4.3.0",
"react-vis": "^1.11.7",
"yarn": "^1.22.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imanid-code/streamflow.git"
},
"bugs": {
"url": "https://github.com/imanid-code/streamflow/issues"
},
"homepage": "."
}