Commit 0d80eac2361c5f81cb2b8abf4302da10e83b81f3
1 parent
8c4a3096b2
Exists in
master
removed fixtures for now
Showing
2 changed files
with
2 additions
and
1 deletions
Show diff stats
imports/server/index.js
1 | import './accounts/index'; | 1 | import './accounts/index'; |
2 | import './collections'; | 2 | import './collections'; |
3 | import './browser-policy'; | 3 | import './browser-policy'; |
4 | import './fixtures'; | 4 | // import './fixtures'; |
5 | import './emails/index'; | 5 | import './emails/index'; |
6 | 6 |
package.json
1 | { | 1 | { |
2 | "name": "application-name", | 2 | "name": "application-name", |
3 | "version": "1.0.0", | 3 | "version": "1.0.0", |
4 | "description": "Application description.", | 4 | "description": "Application description.", |
5 | "scripts": { | 5 | "scripts": { |
6 | "start": "meteor --settings settings-development.json", | 6 | "start": "meteor --settings settings-development.json", |
7 | "test": "meteor test --driver-package practicalmeteor:mocha --port 5000", | 7 | "test": "meteor test --driver-package practicalmeteor:mocha --port 5000", |
8 | "chimp-watch": "chimp --ddp=http://localhost:3000 --watch --mocha --path=tests", | 8 | "chimp-watch": "chimp --ddp=http://localhost:3000 --watch --mocha --path=tests", |
9 | "chimp-test": "chimp --ddp=http://localhost:3000 --mocha --path=tests", | 9 | "chimp-test": "chimp --ddp=http://localhost:3000 --mocha --path=tests", |
10 | "staging": "meteor deploy staging.meteor.com --settings settings-development.json", | 10 | "staging": "meteor deploy staging.meteor.com --settings settings-development.json", |
11 | "production": "meteor deploy production.meteor.com --settings settings-production.json" | 11 | "production": "meteor deploy production.meteor.com --settings settings-production.json" |
12 | }, | 12 | }, |
13 | "devDependencies": { | 13 | "devDependencies": { |
14 | "chimp": "^0.41.2", | 14 | "chimp": "^0.41.2", |
15 | "eslint": "^3.8.1", | 15 | "eslint": "^3.8.1", |
16 | "eslint-config-airbnb": "^12.0.0", | 16 | "eslint-config-airbnb": "^12.0.0", |
17 | "eslint-plugin-import": "^1.16.0", | 17 | "eslint-plugin-import": "^1.16.0", |
18 | "eslint-plugin-jsx-a11y": "^2.2.3", | 18 | "eslint-plugin-jsx-a11y": "^2.2.3", |
19 | "eslint-plugin-meteor": "^4.0.1", | 19 | "eslint-plugin-meteor": "^4.0.1", |
20 | "eslint-plugin-react": "^6.4.1" | 20 | "eslint-plugin-react": "^6.4.1" |
21 | }, | 21 | }, |
22 | "eslintConfig": { | 22 | "eslintConfig": { |
23 | "parserOptions": { | 23 | "parserOptions": { |
24 | "ecmaFeatures": { | 24 | "ecmaFeatures": { |
25 | "jsx": true | 25 | "jsx": true |
26 | } | 26 | } |
27 | }, | 27 | }, |
28 | "plugins": [ | 28 | "plugins": [ |
29 | "meteor", | 29 | "meteor", |
30 | "react" | 30 | "react" |
31 | ], | 31 | ], |
32 | "extends": [ | 32 | "extends": [ |
33 | "airbnb/base", | 33 | "airbnb/base", |
34 | "plugin:meteor/guide", | 34 | "plugin:meteor/guide", |
35 | "plugin:react/recommended" | 35 | "plugin:react/recommended" |
36 | ], | 36 | ], |
37 | "env": { | 37 | "env": { |
38 | "browser": true | 38 | "browser": true |
39 | }, | 39 | }, |
40 | "globals": { | 40 | "globals": { |
41 | "server": false, | 41 | "server": false, |
42 | "browser": false, | 42 | "browser": false, |
43 | "expect": false | 43 | "expect": false |
44 | }, | 44 | }, |
45 | "rules": { | 45 | "rules": { |
46 | "import/no-unresolved": 0, | 46 | "import/no-unresolved": 0, |
47 | "import/no-extraneous-dependencies": 0, | 47 | "import/no-extraneous-dependencies": 0, |
48 | "import/extensions": 0, | 48 | "import/extensions": 0, |
49 | "no-underscore-dangle": [ | 49 | "no-underscore-dangle": [ |
50 | "error", | 50 | "error", |
51 | { | 51 | { |
52 | "allow": [ | 52 | "allow": [ |
53 | "_id", | 53 | "_id", |
54 | "_ensureIndex", | 54 | "_ensureIndex", |
55 | "_verifyEmailToken", | 55 | "_verifyEmailToken", |
56 | "_resetPasswordToken", | 56 | "_resetPasswordToken", |
57 | "_name" | 57 | "_name" |
58 | ] | 58 | ] |
59 | } | 59 | } |
60 | ], | 60 | ], |
61 | "class-methods-use-this": 0 | 61 | "class-methods-use-this": 0 |
62 | } | 62 | } |
63 | }, | 63 | }, |
64 | "dependencies": { | 64 | "dependencies": { |
65 | "babel-runtime": "^6.18.0", | 65 | "babel-runtime": "^6.18.0", |
66 | "bcrypt": "^0.8.7", | 66 | "bcrypt": "^0.8.7", |
67 | "bootstrap": "^3.3.7", | 67 | "bootstrap": "^3.3.7", |
68 | "jquery": "^2.2.4", | 68 | "jquery": "^2.2.4", |
69 | "jquery-validation": "^1.15.1", | 69 | "jquery-validation": "^1.15.1", |
70 | "moment": "^2.18.0", | ||
70 | "react": "^15.4.2", | 71 | "react": "^15.4.2", |
71 | "react-addons-css-transition-group": "^15.4.2", | 72 | "react-addons-css-transition-group": "^15.4.2", |
72 | "react-addons-pure-render-mixin": "^15.3.2", | 73 | "react-addons-pure-render-mixin": "^15.3.2", |
73 | "react-addons-transition-group": "^15.4.2", | 74 | "react-addons-transition-group": "^15.4.2", |
74 | "react-bootstrap": "^0.30.8", | 75 | "react-bootstrap": "^0.30.8", |
75 | "react-bootstrap-date-picker": "^4.0.0", | 76 | "react-bootstrap-date-picker": "^4.0.0", |
76 | "react-dom": "^15.4.2", | 77 | "react-dom": "^15.4.2", |
77 | "react-fontawesome": "^1.5.0", | 78 | "react-fontawesome": "^1.5.0", |
78 | "react-komposer": "^1.13.1", | 79 | "react-komposer": "^1.13.1", |
79 | "react-router": "^2.6.1", | 80 | "react-router": "^2.6.1", |
80 | "react-router-bootstrap": "^0.23.1", | 81 | "react-router-bootstrap": "^0.23.1", |
81 | "react-svg": "^2.1.19", | 82 | "react-svg": "^2.1.19", |
82 | "reactstrap": "^4.2.0", | 83 | "reactstrap": "^4.2.0", |
83 | "velocity-animate": "^1.4.3", | 84 | "velocity-animate": "^1.4.3", |
84 | "velocity-react": "^1.2.1" | 85 | "velocity-react": "^1.2.1" |
85 | } | 86 | } |
86 | } | 87 | } |
87 | 88 |