This repository has been archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.4 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
{
"name": "hexagonal",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "react-app-rewired start --scripts-version react-scripts-ts",
"build": "react-app-rewired build --scripts-version react-scripts-ts",
"analyze": "source-map-explorer build/static/js/main.*",
"clean": "rimraf build",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "lint-staged",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"stylelint-check": "stylelint-config-prettier-check"
},
"dependencies": {
"@blueprintjs/core": "^3.0.1",
"axios": "^0.18.0",
"classnames": "^2.2.5",
"formik": "^1.0.0-beta.2",
"jwt-decode": "^2.2.0",
"mobx": "^4.3.0",
"mobx-react": "^5.1.2",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-icons": "^2.2.7",
"react-router-dom": "^4.2.2",
"recompose": "^0.27.1",
"sanitize.css": "^5.0.0",
"tslib": "^1.9.0",
"yup": "^0.25.1"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"@types/classnames": "^2.2.3",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^9.6.4",
"@types/react": "^16.3.9",
"@types/react-dom": "^16.0.5",
"@types/react-icons": "^2.2.5",
"@types/react-router-dom": "^4.2.6",
"@types/recompose": "^0.26.1",
"@types/yup": "^0.24.4",
"autodll-webpack-plugin": "^0.3.9",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"lodash.clonedeep": "^4.5.0",
"node-sass": "^4.8.3",
"react-app-rewire-hot-loader": "^1.0.1",
"react-app-rewired": "^1.5.0",
"react-hot-loader": "^4.0.1",
"react-scripts-ts": "^2.15.1",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.1",
"sass-resources-loader": "^1.3.3",
"source-map-explorer": "^1.5.0",
"stylelint": "^9.2.0",
"stylelint-config-concentric-order": "^3.1.0",
"stylelint-config-prettier": "^3.2.0",
"stylelint-config-sass-guidelines": "^5.0.0",
"stylelint-config-standard": "^18.2.0",
"tslint-config-prettier": "^1.10.0",
"typescript": "^2.8.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --parser typescript --write",
"tslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
],
"*.scss": [
"stylelint --fix",
"git add"
],
"tslint.json": "npm run tslint-check",
".stylelintrc.json": "npm run stylelint-check"
}
}