-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "junefs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev-server": "nodemon index.js",
"dev-frontend": "webpack --watch --mode=development",
"dev": "concurrently \"npm run dev-server\" \"npm run dev-frontend\""
},
"author": "Andy Wynkoop",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"css-loader": "^1.0.0",
"express": "^4.16.3",
"mongodb": "^3.1.1",
"mongoose": "^5.2.7",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-textarea-autosize": "^7.0.4",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"socket.io": "^2.1.1",
"style-loader": "^0.22.1",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0"
},
"devDependencies": {
"concurrently": "^3.6.1",
"nodemon": "^1.18.3"
}
}