-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
89 lines (89 loc) · 2.41 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "mern-template",
"version": "1.0.7",
"description": "MERN boilerplate generator. Mongo, Express, React, Node todo list web app.",
"main": "bin/www",
"scripts": {
"start": "nodemon",
"build": "webpack --config webpack.prod.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"nodemonConfig": {
"ignore": [
"client/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaxi1993/mern-template"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"sideEffects": false,
"author": "kaxi1993<[email protected]>",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.11.4",
"axios": "^0.27.2",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"dotenv": "^5.0.1",
"express": "^4.17.1",
"helmet": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"joi": "^14.3.1",
"jwt-simple": "^0.5.6",
"mongoose": "^6.4.7",
"morgan": "^1.10.0",
"nodemailer": "^6.6.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"query-string": "^6.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"redux": "^4.1.0",
"redux-devtools": "^3.7.0",
"redux-saga": "^1.1.3",
"signale": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/runtime": "^7.14.0",
"babel-eslint": "^8.2.5",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^2.0.2",
"codecov": "^3.8.2",
"css-loader": "^5.2.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.24.0",
"jest": "^25.5.4",
"node-sass": "^7.0.1",
"nodemon": "^2.0.4",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"supertest": "^4.0.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2"
}
}