-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
115 lines (115 loc) · 2.75 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
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "retrospective",
"private": true,
"engines": {
"yarn": "^1.16.0",
"node": "^10.0.0 || ^12.0.0 || ^13.0.0 || ^14.2.0"
},
"xo": {
"envs": [
"browser"
],
"extends": "xo-react",
"parser": "babel-eslint",
"prettier": true,
"space": true,
"rules": {
"camelcase": 0,
"default-case": 0,
"import/extensions": [
"error",
{
"js": "never",
"jsx": "never",
"json": "always",
"svg": "always",
"css": "always",
"gql": "always",
"less": "always"
}
],
"unicorn/import-index": [
"error",
{
"ignoreImports": true
}
],
"import/no-unassigned-import": [
"error",
{
"allow": [
"**/*.css",
"**/*.less"
]
}
],
"no-alert": 0,
"no-unused-expressions": [
"error",
{
"allowShortCircuit": true
}
],
"promise/prefer-await-to-then": 1,
"react/prop-types": 0
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": "xo --fix"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@babel/preset-react": "^7.12.5",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-regular-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.10",
"@rails/actioncable": "^6.0.3",
"@rails/webpacker": "^4.2.2",
"actioncable": "^5.2.4",
"apollo-boost": "^0.4.7",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"emoji-picker-react": "^3.2.4",
"graphql": "^15.4.0",
"graphql-ruby-client": "^1.8.1",
"graphql-tag": "^2.10.3",
"linkifyjs": "^2.1.9",
"nanoid": "^3.1.20",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-apollo": "^3.1.5",
"react-bulma-components": "3.4.0",
"react-dom": "^16.12.0",
"react-select": "^3.0.8",
"react-textarea-autosize": "^8.3.0",
"react_ujs": "^2.6.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^7.15.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": ">=4",
"less": "^3.13.0",
"less-loader": "^7.1.0",
"lint-staged": ">=10.0.6",
"webpack-dev-server": "^3.10.1",
"xo": "^0.36.1"
},
"scripts": {
"lint": "xo app/javascript",
"lint:fix": "yarn lint --fix",
"test": "yarn lint"
}
}