This repository was archived by the owner on May 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.99 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
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
{
"name": "base-react-redux",
"version": "1.0.0",
"description": "Basic setup for an react redux application",
"scripts": {
"start": "webpack-dev-server --open --mode development --hot",
"build": "webpack --mode production",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"lint:styles": "stylelint 'src/**/*.scss'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itchef/base-react-redux.git"
},
"keywords": [
"React",
"Redux",
"React-Redux"
],
"author": "Kaustav Chakraborty",
"license": "MIT",
"bugs": {
"url": "https://github.com/itchef/base-react-redux/issues"
},
"homepage": "https://github.com/itchef/base-react-redux#readme",
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.4.0",
"babel-loader": "8.0.5",
"babel-eslint": "10.0.1",
"html-loader": "0.5.5",
"css-loader": "2.1.1",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"node-sass": "4.11.0",
"prettier": "1.17.0",
"stylelint": "10.0.1",
"stylelint-config-recommended": "2.2.0",
"webpack": "4.30.0",
"webpack-cli": "3.3.0",
"webpack-dev-server": "3.3.1",
"html-webpack-plugin": "3.2.0",
"mini-css-extract-plugin": "0.6.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.12.1",
"enzyme-to-json": "3.3.5",
"jest": "24.7.1",
"eslint": "5.16.0",
"eslint-plugin-react": "7.12.4",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.17.1",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.0.1"
},
"dependencies": {
"babel-polyfill": "7.0.0-beta.3",
"react": "16.8.6",
"redux": "4.0.1",
"redux-devtools-extension": "2.13.8",
"react-redux": "7.0.2",
"react-dom": "16.8.6",
"prop-types": "15.7.2"
}
}