-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
{
"name": "react-template",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/r1y4h/react-template.git",
"author": "Raymond Dazo <[email protected]>",
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"lint": "eslint src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,json,css}": [
"prettier --write",
"npm run lint",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11"
],
"dependencies": {
"axios": "^0.21.1",
"bootstrap": "^4.5.0",
"classnames": "^2.2.6",
"mobx": "^5.15.4",
"mobx-react": "^6.2.2",
"query-string": "^6.13.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"reactstrap": "^8.4.1",
"smoothscroll-polyfill": "^0.4.4",
"styled-components": "^5.1.1"
},
"devDependencies": {
"eslint-config-fbjs": "^3.1.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"node-sass": "^7.0.0",
"prettier": "^2.0.5",
"sass-extract": "^2.1.0",
"sass-extract-js": "^0.4.0",
"sass-extract-loader": "^1.1.0"
}
}