forked from mizmoz/dev-test-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"name": "dev-test-react",
"version": "1.0.0",
"main": "src/index.jsx",
"author": "Ian Chadwick <ian@mizmoz.com>",
"private": true,
"scripts": {
"go": "yarn install && yarn run start",
"go-npm": "npm install && npm run start",
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development --open --history-api-fallback"
},
"dependencies": {
"bootstrap": "^4.6.0",
"promise-retry": "^2.0.1",
"prop-types": "^15.6.2",
"react": "^16.5.0",
"react-bootstrap": "^1.4.3",
"react-dom": "^16.5.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"shortid": "^2.2.16",
"styled-components": "^3.4.6"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-styled-components": "^1.6.4",
"copy-webpack-plugin": "^4.5.2",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"react-hot-loader": "^4.3.6",
"redux-devtools": "^3.7.0",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
}
}