This repository has been archived by the owner on Jul 7, 2023. It is now read-only.
forked from Draglon/Template_react_webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.21 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
{
"name": "react-graphql-meetup",
"private": true,
"version": "1.0.0",
"author": "Nazarchuk Sergey",
"scripts": {
"start": "webpack-dev-server --hot --watch --history-api-fallback",
"test": "jest",
"test:coverage": "jest --no-cache -u --coverage"
},
"dependencies": {
"antd": "^3.19.2",
"apollo-boost": "^0.4.7",
"apollo-link-context": "^1.0.19",
"autoprefixer": "^9.6.0",
"formik": "^1.5.7",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"history": "^4.9.0",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.0",
"lodash": "^4.17.11",
"normalizr": "^3.4.0",
"prop-types": "^15.7.2",
"qs": "^6.7.0",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-redux": "^5.0.7",
"react-router": "^5.0.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-logic": "^2.1.1",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-jest-enzyme": "^7.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.1",
"redux-devtools-extension": "^2.13.5",
"redux-logic-test": "^2.0.0",
"redux-mock-store": "^1.5.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}