-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.82 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
{
"name": "user_auth_and_crud_app_mern_boilerplate",
"version": "1.0.0",
"description": "Boilerplate with MERN Stack + Redux + JWT for registration, login and authentication of users with CRUD operations for users posts.",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --env.ENVIRONMENT=development --mode development",
"build": "webpack --env.ENVIRONMENT=production --mode production",
"test": "jest --config ./jest.config.json",
"test:verbose": "jest --verbose --config ./jest.config.json",
"preinstall": "npx npm-force-resolutions"
},
"keywords": [],
"author": "",
"license": "ISC",
"resolutions": {
"minimist": "^1.2.5"
},
"dependencies": {
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"history": "^4.10.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"file-loader": "^6.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"ignore-styles": "^5.0.1",
"jest": "^26.0.1",
"jsdom": "^16.4.0",
"minimist": "^1.2.5",
"node-sass": "^4.14.1",
"react-test-renderer": "^16.13.1",
"redux-mock-store": "^1.5.4",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0"
}
}