-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
65 lines (65 loc) · 1.97 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "discuss-thread",
"version": "0.1.0",
"description": "A MERN stack based Discuss-Thread website for issue resolving.",
"private": true,
"scripts": {
"dev": "webpack -p --progress --profile --colors && node server",
"start": "node server"
},
"engines": {
"node": ">=6"
},
"dependencies": {
"@babel/core": "7.6.0",
"@babel/preset-env": "7.6.0",
"@babel/preset-react": "7.0.0",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"autoprefixer": "9.6.1",
"babel-loader": "8.0.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^4.6.0",
"connect-history-api-fallback": "1.6.0",
"consola": "^2.15.3",
"cookie-parser": "^1.4.5",
"copy-webpack-plugin": "5.0.3",
"css-loader": "3.1.0",
"dotenv": "^10.0.0",
"express": "4.17.1",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"html-webpack-plugin": "3.2.0",
"js-yaml": "3.13.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.12",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"postcss-loader": "3.0.0",
"react": "16.8.6",
"react-bootstrap": "^1.6.0",
"react-dom": "16.8.6",
"react-hot-loader": "4.12.9",
"react-router": "5.0.1",
"react-router-dom": "5.0.1",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"validator": "^13.6.0",
"webpack": "4.38.0",
"webpack-cli": "3.3.6",
"webpack-dev-middleware": "3.7.0",
"webpack-hot-middleware": "2.25.0",
"webpack-merge": "4.2.1",
"whatwg-fetch": "3.0.0"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"eslint": "6.1.0",
"eslint-plugin-react": "7.14.3",
"prettier": "1.18.2"
},
"prettier": {
"singleQuote": false,
"editor.formatOnSave": true
}
}