-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.55 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
{
"name": "mern",
"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 && yarn install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"@shopify/draggable": "^1.0.0-beta.7",
"axios": "^0.16.2",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.17.2",
"classnames": "^2.2.6",
"create-react-class": "^15.6.3",
"csvtojson": "^2.0.8",
"dotenv": "^6.1.0",
"enzyme-adapter-react-16": "^1.1.1",
"express": "^4.15.4",
"express-fileupload": "^1.0.0",
"immutability-helper": "^2.7.1",
"jsonwebtoken": "^8.3.0",
"jspdf": "^1.4.1",
"moment": "^2.22.2",
"mongoose": "^5.0.11",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-bootstrap": "^0.32.4",
"react-chartist": "^0.13.1",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^5.0.1",
"react-dom": "^16.5.2",
"react-draggable": "^3.0.5",
"react-materialize": "^2.3.3",
"react-notification-system": "^0.2.17",
"react-router-dom": "^4.3.1",
"react-tagcloud": "^1.3.1"
}
}