-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.04 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
{
"name": "yandex-taxi-react",
"version": "1.2.8",
"description": "Application to search for employees in Yandex.Taxi",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"test": "echo \"No test specified\" && exit 0",
"build": "webpack -p",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"format": "prettier --write \"src/**/*.{js,jsx,css}\""
},
"homepage": "https://digitalapplebee.github.io/yandex-taxi-react/",
"keywords": [
"yandex",
"taxi",
"react"
],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^7.1.5",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^2.1.0",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.5.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"husky": "^3.0.9",
"image-webpack-loader": "4.2.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0"
},
"dependencies": {
"babel-preset-env": "^1.7.0",
"lodash": "^4.17.15",
"lodash.template": "^4.5.0",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-favicon": "^0.0.17",
"react-hot-loader": "^4.12.15",
"react-icons": "^3.8.0",
"serialize-javascript": "^4.0.0",
"styled-components": "^4.4.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint && yarn run format"
}
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix",
"git add"
],
"*.+(json|css|md)": [
"prettier --write",
"git add"
]
}
}