-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.71 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.71 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
{
"name": "blog-frontend",
"private": true,
"repository": "https://github.com/coockoo/blog-frontend",
"version": "1.0.0",
"description": "Blog frontend",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack/config.js",
"dev": "webpack-dev-server --config webpack/config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Oleksandr Bondarchuk <alex.coockoo@gmail.com> (https://github.com/coockoo)",
"license": "UNLICENSED",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@hot-loader/react-dom": "^16.13.0",
"@types/react": "^16.9.35",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"core-js": "^3.6.5",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"less": "^3.11.1",
"less-loader": "^6.1.0",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "^2.0.5",
"raw-loader": "^4.0.1",
"regenerator-runtime": "^0.13.5",
"style-loader": "^1.2.1",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"classnames": "^2.2.6",
"date-fns": "^2.13.0",
"highlight.js": "^10.4.1",
"marked": "^1.0.0",
"nanoid": "^3.1.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"react-router-dom": "^5.2.0"
}
}