-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.1 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
{
"name": "unloop",
"private": true,
"scripts": {
"generate": "plop --plopfile internals/generators/index.js",
"lint": "yarn run lint:js && yarn run lint:css",
"lint:css": "stylelint app/**/*.js",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:eslint:fix": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts --fix",
"lint:js": "yarn run lint:eslint . ",
"lint:staged": "lint-staged",
"prettify": "prettier --write"
},
"lint-staged": {
"*.js": [
"yarn run lint:eslint:fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"dependencies": {
"@babel/core": "^7.7.0",
"@babel/plugin-transform-react-constant-elements": "^7.6.3",
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
"@babel/preset-react": "^7.6.3",
"@babel/types": "^7.7.2",
"@date-io/core": "^1.3.13",
"@date-io/date-fns": "1.x",
"@date-io/moment": "1.x",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.7",
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.5.1",
"@material-ui/pickers": "^3.2.10",
"@material-ui/styles": "^4.9.10",
"@rails/actioncable": "^6.0.0-alpha",
"@rails/activestorage": "^6.0.0-alpha",
"@rails/ujs": "^6.0.0-alpha",
"@rails/webpacker": "^4.0.7",
"@sentry/browser": "^5.15.4",
"axios": "^0.19.0",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"dotenv": "^8.2.0",
"date-fns": "^2.12.0",
"draft-js": "^0.11.2",
"draft-js-plugins-editor": "^3.0.0",
"draftail": "^1.3.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-import-resolver-webpack": "^0.11.1",
"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",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^4.2.0",
"formik": "^2.1.4",
"history": "^4.10.1",
"jest-cli": "^24.9.0",
"jest-dom": "^4.0.0",
"libphonenumber-js": "^1.7.51",
"lint-staged": "^9.4.2",
"material-ui-dropzone": "^3.0.0",
"moment": "^2.25.1",
"mui-rte": "^1.8.0",
"node-plop": "^0.23.0",
"plop": "^2.5.3",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-activestorage-provider": "^0.8.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-intl": "^3.4.0",
"react-phone-number-input": "^3.0.22",
"react-testing-library": "^8.0.1",
"react_ujs": "^2.6.0",
"stylelint": "^11.1.1",
"stylelint-config-recommended": "^3.0.0",
"trie-search": "^1.2.11",
"turbolinks": "^5.2.0",
"validator": "^13.0.0",
"webpack": "^4.41.2"
},
"version": "0.1.0",
"devDependencies": {
"webpack-dev-server": "^3.8.1"
}
}