-
Notifications
You must be signed in to change notification settings - Fork 253
/
package.json
82 lines (82 loc) · 2.15 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
{
"name": "application-name",
"version": "1.0.0",
"description": "Application description.",
"license": "MIT",
"scripts": {
"start": "meteor --settings settings-development.json",
"test": "meteor test --driver-package practicalmeteor:mocha --port 5000",
"chimp-watch": "chimp --ddp=http://localhost:3000 --watch --mocha --path=tests",
"chimp-test": "chimp --ddp=http://localhost:3000 --mocha --path=tests",
"staging": "meteor deploy staging.meteor.com --settings settings-development.json",
"production": "meteor deploy production.meteor.com --settings settings-production.json"
},
"devDependencies": {
"chimp": "^0.41.2",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-meteor": "^4.0.1",
"eslint-plugin-react": "^6.4.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"meteor",
"react"
],
"extends": [
"airbnb/base",
"plugin:meteor/guide",
"plugin:react/recommended"
],
"env": {
"browser": true
},
"globals": {
"server": false,
"browser": false,
"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
}
},
"dependencies": {
"babel-runtime": "^6.23.0",
"bcrypt": "^1.0.2",
"bootstrap": "^3.3.7",
"jquery": "^2.2.4",
"jquery-validation": "^1.15.1",
"meteor-node-stubs": "^0.2.6",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-addons-pure-render-mixin": "^15.5.2",
"react-bootstrap": "^0.30.9",
"react-dom": "^15.5.4",
"react-komposer": "^2.0.0",
"react-router": "^3.0.0",
"react-router-bootstrap": "^0.23.2",
"simpl-schema": "^0.2.3"
}
}