-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.66 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
{
"name": "Mystify",
"version": "1.0.0",
"description": "A fullstack clone of Spotify built in React, Redux, Node, and Express along with MongoDB.",
"main": "backend/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack --watch --mode=development",
"nodemon": "nodemon --exec babel-node backend/server.js",
"start": "webpack --mode=production && babel-node backend/server.js",
"startDev": "npm run webpack & npm run nodemon",
"seed": "babel-node backend/database/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brothman/Mystify.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Brothman/Mystify/issues"
},
"homepage": "https://github.com/Brothman/Mystify#readme",
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"axios": "^0.18.0",
"babel-loader": "^8.0.5",
"body-parser": "^1.18.3",
"css-loader": "^2.1.0",
"express": "^4.16.4",
"extract-text-webpack-plugin": "^3.0.2",
"mini-css-extract-plugin": "^0.5.0",
"mongoose": "^5.4.6",
"nodemon": "^1.18.9",
"opn": "^5.4.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
}
}