-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.25 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
{
"name": "react-redux-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"format": "prettier \"**/*.+(js|jsx|css|scss|md|json)\" --write",
"lint": "eslint \"**/*.+(js|jsx)\"",
"start": "NODE_ENV=development webpack-dev-server --config ./webpack.config.js",
"build": "NODE_ENV=production webpack --config ./webpack.config.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:update-snapshot": "jest --updateSnapshot --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ayush-krishnatray/react-redux-boilerplate.git"
},
"author": "Ayush Krishnatray",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ayush-krishnatray/react-redux-boilerplate/issues"
},
"homepage": "https://github.com/Ayush-krishnatray/react-redux-boilerplate#readme",
"dependencies": {
"@babel/runtime": "^7.9.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.17.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.3.0",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"prettier": "^2.2.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.10.1",
"webpack-merge": "^4.2.2"
}
}