-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.6 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"dependencies": {
"@apollo/client": "^3.3.7",
"@reduxjs/toolkit": "^1.1.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"aphrodite": "^2.4.0",
"classnames": "^2.2.6",
"cookie-parser": "^1.4.5",
"ejs": "^3.1.5",
"esm": "^3.2.25",
"express": "^4.17.1",
"graphql": "^15.4.0",
"mongoose": "^5.10.7",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.1.3",
"react-scripts": "3.4.3",
"react-select": "^3.2.0"
},
"scripts": {
"start": "webpack-dev-server --config webpack-dev.config.js",
"build": "webpack --config webpack-prod.config.js"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"extends": [
"airbnb",
"airbnb-typescript"
],
"parserOptions": {
"project": "./tsconfig.json"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@types/express": "^4.17.8",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.1",
"css-loader": "^4.3.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-airbnb-typescript": "10.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.0",
"html-loader": "^1.3.1",
"html-webpack-plugin": "^4.5.0",
"json-loader": "^0.5.7",
"nodemon": "^2.0.4",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"ref-loader": "^1.0.3",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.4",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-merge": "^5.1.4"
}
}