-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.8 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
{
"name": "cut-me-some-slack",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-eslint": "^6.1.2",
"emojione": "^3.1.2",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"history": "^4.7.2",
"jwt-decode": "^2.2.0",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-fontawesome": "^1.6.1",
"react-markdown": "^2.5.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.11",
"react-visibility-sensor": "^3.10.1"
},
"scripts": {
"start": "cd ui && react-scripts start",
"build": "cd ui && react-scripts build",
"test": "cd ui && react-scripts test --env=jsdom",
"eject": "cd ui && react-scripts eject",
"postinstall": "yarn build"
},
"eslintConfig": {
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"max-len": [
"off"
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
],
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
],
"react/forbid-prop-types": [
"error",
{
"forbid": [
"any"
]
}
],
"react/prefer-stateless-function": [
"off"
],
"jsx-a11y/no-static-element-interactions": [
"off"
],
"linebreak-style": [
"off"
],
"arrow-parens": [
"error",
"as-needed"
],
"import/no-named-default": [
"off"
]
},
"env": {
"browser": true,
"jest": true
}
}
}