-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.47 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.47 KB
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
{
"name": "apolloFileUpload",
"private": true,
"scripts": {
"start": "meteor run"
},
"dependencies": {
"apollo-client": "^0.4.13",
"apollo-server": "^0.2.6",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"graphql": "^0.7.0",
"graphql-tag": "^0.1.11",
"graphql-tools": "^0.6.5",
"meteor-node-stubs": "~0.2.0",
"multer": "^1.2.0",
"react": "^15.3.1",
"react-apollo": "^0.4.7",
"react-dom": "^15.3.1",
"react-file-input": "^0.2.5"
},
"devDependencies": {
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-jsx-a11y": "^1.0.3",
"eslint-plugin-meteor": "^3.5.2",
"eslint-plugin-react": "^5.0.1",
"stylelint": "^6.5.1",
"stylelint-config-standard": "^8.0.0"
},
"eslintConfig": {
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/guide"
],
"rules": {
"import/no-unresolved": 0,
"func-names": 0,
"no-underscore-dangle": [
"error",
{
"allow": [
"_id",
"_ensureIndex",
"_verifyEmailToken",
"_resetPasswordToken",
"_name",
"_transform",
"_enrollAccountToken"
]
}
],
"new-cap": [
"error",
{
"capIsNewExceptions": [
"Tracks"
]
}
]
},
"globals": {
"_": true
}
}
}