-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3 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
92
93
94
{
"name": "website-whitelabel",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start --hot",
"build": "react-scripts build",
"eject": "react-scripts eject",
"prettier": "./node_modules/.bin/prettier \"**/*.*\"",
"prettier:check": "yarn prettier --check",
"prettier:format": "yarn prettier --write --loglevel warn",
"start:production": "yarn build && serve -s build",
"stylelint": "./node_modules/.bin/stylelint \"**/*.scss\"",
"stylelint:fix": "yarn stylelint --fix",
"lint": "eslint --format=node_modules/eslint-formatter-pretty src storybook *.js",
"flow:test": "flow; test $? -eq 0 -o $? -eq 2",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.25",
"@fortawesome/free-solid-svg-icons": "5.11.2",
"@fortawesome/react-fontawesome": "0.1.7",
"@zsajjad/react-facebook-pixel": "git+https://github.com/zsajjad/react-facebook-pixel.git",
"axios": "^0.19.0",
"history": "4.10.1",
"lodash": "^4.17.19",
"material-design-icons": "^3.0.1",
"mixpanel-browser": "2.30.1",
"node-sass": "^4.14.1",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-helmet": "^6.1.0",
"react-linkedin-insight": "^0.0.5",
"react-loader-spinner": "^3.1.5",
"react-magic-slider-dots": "1.1.3",
"react-mailchimp-subscribe": "2.1.0",
"react-redux": "7.1.1",
"react-router-dom": "5.1.2",
"react-scripts": "^3.3.1",
"react-slick": "0.25.2",
"react-typing-animation": "1.6.2",
"react-typing-effect": "2.0.2",
"redux": "4.0.4",
"slick-carousel": "1.8.1"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@storybook/addon-actions": "5.2.6",
"@storybook/addon-links": "5.2.6",
"@storybook/addons": "5.2.6",
"@storybook/react": "5.2.6",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"eslint": "4.19.1",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-config-react-app": "5.0.2",
"eslint-formatter-pretty": "2.0.0",
"eslint-import-resolver-webpack": "0.10.1",
"eslint-loader": "2.1.1",
"eslint-plugin-flowtype": "3.2.0",
"eslint-plugin-flowtype-errors": "3.6.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-react-hooks": "2.3.0",
"flow-bin": "0.112.0",
"husky": "3.1.0",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"stylelint": "12.0.0",
"stylelint-order": "3.1.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "yarn prettier:check && yarn lint && yarn flow:test && yarn stylelint"
}
}
}