-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.67 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
{
"name": "code-club",
"version": "1.0.0",
"description": "JS Code Club Project Manager",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/okgrow/code-club.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/okgrow/code-club/issues"
},
"homepage": "https://github.com/okgrow/code-club#readme",
"scripts": {
"start": "meteor run",
"lint": "eslint .",
"pretest": "npm run lint --silent"
},
"eslintConfig": {
"plugins": [
"react",
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"rules": {
"no-console": 0,
"import/no-unresolved": [
2,
{
"ignore": [
"^meteor/",
"^/imports/"
]
}
],
"no-underscore-dangle": 0,
"func-names": 0
}
},
"dependencies": {
"eslint-plugin-react": "^5.2.2",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"react": "^15.1.0",
"react-addons-create-fragment": "^15.1.0",
"react-addons-css-transition-group": "^15.1.0",
"react-addons-linked-state-mixin": "^15.1.0",
"react-addons-perf": "^15.1.0",
"react-addons-pure-render-mixin": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-addons-transition-group": "^15.1.0",
"react-addons-update": "^15.1.0",
"react-dom": "^15.1.0",
"react-mounter": "^1.2.0"
},
"devDependencies": {
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-meteor": "^3.6.0",
"eslint-plugin-react": "^5.2.2"
}
}