-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.13 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
{
"name": "membership",
"private": false,
"version": "0.1.0",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github"
]
},
"scripts": {
"format": "prettier-standard 'app/**/*.{js,jsx}'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json}": [
"npm run format"
]
},
"dependencies": {
"@babel/preset-react": "7.13.13",
"@debtcollective/union-component": "1.5.0",
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"@rails/actioncable": "6.1.3",
"@rails/actiontext": "6.1.2",
"@rails/activestorage": "6.1.2",
"@rails/ujs": "6.1.2",
"@rails/webpacker": "5.2.1",
"@sentry/browser": "5.23.0",
"@sentry/webpack-plugin": "1.14.2",
"@stripe/react-stripe-js": "1.4.0",
"@stripe/stripe-js": "1.14.0",
"@tailwindcss/forms": "0.3.2",
"@tailwindcss/postcss7-compat": "2.1.0",
"alpinejs": "2.8.2",
"autoprefixer": "^9",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"moment": "2.29.1",
"numeral": "2.0.6",
"postcss": "^7",
"prop-types": "15.7.2",
"rails-erb-loader": "5.5.2",
"react": "17.0.2",
"react-date-picker": "8.1.1",
"react-dom": "17.0.2",
"react-on-rails": "12.2.0",
"react-phone-number-input": "3.1.19",
"react_ujs": "2.6.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"trix": "1.3.1",
"turbolinks": "5.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/github": "7.2.3",
"@semantic-release/release-notes-generator": "9.0.2",
"cypress": "7.3.0",
"eslint-plugin-react-hooks": "4.1.2",
"faker": "5.5.2",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"prettier-standard": "16.4.1",
"semantic-release": "17.2.3",
"standard": "14.3.4",
"webpack-dev-server": "3.11.2"
},
"standard": {
"plugins": [
"react-hooks"
]
}
}