-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.78 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.78 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "gamingeverafter.com",
"version": "1.0.0",
"description": "Gaming Ever After Blog",
"repository": "https://github.com/Alemkin/gamingeverafter.com",
"main": "/app",
"author": "Alexander Lemkin",
"scripts": {
"lint": "eslint \"./app/**/*.js\"",
"lint-fix": "eslint \"./app/**/*.js\" --fix",
"lint-style": "stylelint \"app/**/*.scss\"",
"lint-style-fix": "stylelint \"app/**/*.scss\" --fix",
"build": "cross-env NODE_ENV=production webpack --mode production",
"dev": "cross-env NODE_ENV=development webpack-dev-server --mode development"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
},
"eslintIgnore": [
"*.test.js"
],
"dependencies": {
"date-fns": "1.30.1",
"i18next": "17.0.6",
"lodash": "^4.17.20",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-markdown": "4.1.0",
"react-redux": "7.1.0",
"react-router-dom": "5.3.0",
"react-router": "5.2.1",
"reactstrap": "8.0.1",
"redux": "4.0.4",
"redux-saga": "1.0.5",
"reselect": "4.0.0"
},
"devDependencies": {
"@babel/core": "7.15.8",
"@babel/preset-env": "7.15.8",
"@babel/preset-react": "7.14.5",
"@babel/polyfill": "7.12.1",
"@babel/runtime": "7.15.4",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"autoprefixer": "9.6.1",
"babel-plugin-transform-object-rest-spread": "7.0.0-beta.3",
"babel-loader": "8.2.2",
"bootstrap": "4.5.0",
"circular-dependency-plugin": "5.0.2",
"copy-webpack-plugin": "6.0.2",
"cross-env": "5.2.0",
"css-loader": "3.1.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "6.7.2",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-jsx": "8.1.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"file-loader": "4.1.0",
"html-webpack-plugin": "3.2.0",
"i18next-resource-store-loader": "0.1.2",
"identity-obj-proxy": "3.0.0",
"mini-css-extract-plugin": "0.8.0",
"node-sass": "^6.0.1",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss-loader": "3.0.0",
"react-testing-library": "8.0.1",
"redux-immutable-state-invariant": "2.1.0",
"redux-logger": "3.0.6",
"sass-loader": "10.2.0",
"snazzy": "8.0.0",
"standard": "14.3.1",
"stylelint": "13.13.1",
"stylelint-config-standard": "22.0.0",
"terser-webpack-plugin": "2.3.0",
"webpack": "4.38.0",
"webpack-cli": "4.9.0",
"webpack-dev-server": "^4.3.1",
"webpack-encoding-plugin": "0.3.1",
"webpack-manifest-plugin": "2.2.0",
"webpack-node-externals": "1.7.2",
"workbox-webpack-plugin": "5.1.3"
}
}