generated from emresandikci/react-easy-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.34 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
{
"name": "emresandikci-official-website",
"version": "1.0.0",
"description": "My personal website ",
"main": "index.js",
"repository": "https://github.com/emresandikci/emresandikci.com",
"author": "emresandikci<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/emresandikci/emresandikci.com/issues"
},
"homepage": "https://github.com/emresandikci/emresandikci.com#readme",
"keywords": [
"reactjs",
"boilerplate",
"styled-components",
"styled-system",
"esducad-ui",
"kit"
],
"scripts": {
"dev": "webpack-dev-server --open --mode development",
"start": "webpack-dev-server --open --mode production",
"build": "yarn clean && yarn lint:fix && yarn format && webpack --mode production",
"clean": "rimraf dist/",
"format": "prettier --write \"src/**/*.{js,jsx,css,json}\"",
"lint": "eslint src",
"lint:fix": "yarn lint --fix",
"validate": "yarn prettier --check \"src/**/*.{js,jsx,css,json}\" && yarn lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/!(*story).js": [
"yarn format",
"yarn lint:fix",
"yarn validate"
]
},
"dependencies": {
"esducad-ui": "https://github.com/emresandikci/esducad-ui#master",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-router-dom": "^5.1.2",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}