-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.6 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
{
"name": "yogenda",
"private": true,
"scripts": {
"start": "meteor --settings settings-development.json",
"prod-nohup": "ROOT_URL=https://yogenda.com/ nohup meteor --production --settings settings-production.json",
"prod": "ROOT_URL=https://yogenda.com/ meteor --production --settings settings-production.json",
"ms-dev": "ROOT_URL=http://localhost:3000/ meteor --settings settings-development-with-microsoft.json",
"ms-debug": "ROOT_URL=http://localhost:3000/ meteor debug --settings settings-development-with-microsoft.json",
"test": "jest"
},
"dependencies": {
"@cleverbeagle/dates": "^0.4.0",
"@cleverbeagle/seeder": "^1.1.0",
"@cleverbeagle/strings": "^0.1.0",
"babel-runtime": "^6.20.0",
"bcrypt": "^1.0.2",
"commonmark": "^0.27.0",
"jquery": "^2.2.4",
"jquery-validation": "^1.16.0",
"lodash": "^4.17.4",
"material-ui": "^0.19.0",
"meteor-node-stubs": "~0.2.4",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-addons-pure-render-mixin": "^15.5.2",
"react-bootstrap": "^0.31.0",
"react-datetime": "^2.9.0",
"react-dom": "^15.6.1",
"react-router-bootstrap": "^0.24.2",
"react-router-dom": "^4.1.1",
"simpl-schema": "^0.3.1",
"snapsvg": "^0.5.1",
"uniforms": "^1.20.0",
"uniforms-bootstrap3": "^1.20.0",
"uniforms-material": "^1.20.0"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-meteor": "^4.0.1",
"eslint-plugin-react": "^7.0.1",
"jest": "^20.0.3",
"jsx-control-statements": "^3.2.5"
},
"eslintConfig": {
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"meteor",
"react"
],
"extends": [
"airbnb",
"plugin:meteor/recommended",
"plugin:react/recommended"
],
"env": {
"browser": true
},
"globals": {
"expect": false
},
"rules": {
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"import/extensions": 0,
"no-underscore-dangle": [
"error",
{
"allow": [
"_id",
"_ensureIndex",
"_verifyEmailToken",
"_resetPasswordToken",
"_name"
]
}
],
"class-methods-use-this": 0,
"react/jsx-filename-extension": 0,
"react/forbid-prop-types": 0
}
}
}