-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.88 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
101
102
{
"name": "lily-frontend",
"license": "MIT",
"version": "1.0.0",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-brands-svg-icons": "^5.7.2",
"@fortawesome/pro-regular-svg-icons": "^5.7.2",
"@fortawesome/pro-solid-svg-icons": "^5.7.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@sentry/browser": "^4.6.4",
"@uppy/aws-s3": "^0.30.3",
"@uppy/core": "^0.30.3",
"@uppy/react": "^0.30.3",
"@uppy/xhr-upload": "^0.30.3",
"classnames": "^2.2.5",
"date-fns": "^2.0.0-alpha.27",
"debounce-promise": "^3.1.0",
"diff": "^4.0.1",
"formik": "^1.5.1",
"froala-editor": "^2.9.3",
"google-libphonenumber": "^3.2.2",
"history": "^4.7.2",
"i18next": "^15.0.6",
"i18next-xhr-backend": "^2.0.1",
"jquery": "^3.3.1",
"js-cookie": "^2.2.0",
"rc-pagination": "^1.17.8",
"react": "^16.8.4",
"react-datepicker": "^2.1.0",
"react-dom": "^16.8.4",
"react-froala-wysiwyg": "^2.9.3",
"react-i18next": "^10.3.1",
"react-markdown": "^4.0.6",
"react-modal": "^3.8.1",
"react-router-dom": "^4.3.1",
"react-select": "^2.4.1",
"react-tabs": "^3.0.0",
"react-textarea-autosize": "^7.1.0",
"react-toastify": "^4.5.2",
"react-tooltip": "^3.10.0",
"reconnecting-websocket": "^4.1.10"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^5.0.0",
"css-loader": "^2.1.1",
"dotenv": "^6.2.0",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.5.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "3.2.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-recommended": "^2.1.0",
"stylelint-scss": "^3.5.4",
"url-loader": "^1.0.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"scripts": {
"start": "webpack-dev-server --mode development --port 3001",
"build": "webpack --mode production"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint",
"stylelint",
"git add"
]
},
"prettier": {
"printWidth": 100,
"singleQuote": true
}
}