-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.99 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "md-react-boilerplate",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=8.5.0"
},
"scripts": {
"start:dev": "env-cmd -f .env.development.local react-scripts start",
"start:prod": "env-cmd -f .env.production.local react-scripts start",
"build:dev": "GENERATE_SOURCEMAP=true env-cmd -f .env.development react-scripts build",
"build:prod": "GENERATE_SOURCEMAP=false env-cmd -f .env.production react-scripts build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier": "prettier --write \"{src/!(assets),src}/**/*.js\"",
"eject": "react-scripts eject",
"clean": "rimraf ./build",
"test": "jest",
"coverage": "yarn run test -- --coverage",
"runcoverage": "hs ./coverage/lcov-report/"
},
"husky": {
"hooks": {
"pre-commit": "yarn run prettier && yarn run lint:fix",
"pre-push": "yarn run test"
}
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.11.2",
"animate.css": "^3.7.2",
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"connected-react-router": "^6.5.2",
"core-js": "^3.4.1",
"flag-icon-css": "^3.4.5",
"history": "^4.10.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"node-sass": "^4.13.0",
"prop-types": "^15.7.2",
"qs": "^6.9.1",
"raf": "^3.4.1",
"react": "^16.11.0",
"react-app-polyfill": "^1.0.4",
"react-dom": "^16.11.0",
"react-helmet": "^5.2.1",
"react-intl": "^3.5.0",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.2.0",
"react-slick": "^0.25.2",
"react-toastify": "^5.4.1",
"reactstrap": "^8.1.1",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"remote-redux-devtools": "^0.5.16",
"styled-components": "^4.4.1",
"sweetalert2": "^9.3.4",
"sweetalert2-react-content": "^2.0.2",
"validator": "^12.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"env-cmd": "^10.0.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.9",
"jest-enzyme": "^7.1.2",
"prettier": "^1.19.1",
"redux-mock-store": "^1.5.3",
"rimraf": "^3.0.0",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-scss": "^3.12.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}