Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
npaton committed May 16, 2018
0 parents commit 0eb3493
Show file tree
Hide file tree
Showing 157 changed files with 13,676 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
node_modules/
**/.idea
.DS_Store
dev.json
local.json
development.json
staging.json
production.json
settings.json
builder
22 changes: 22 additions & 0 deletions .importjs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
const clientPattern = /(\/client|\/imports\/ui)/;

module.exports = {
environments: ({ pathToCurrentFile }) => {
if (clientPattern.test(pathToCurrentFile)) {
return ["meteor", "browser"];
}
return ["meteor", "node"];
},
importStatementFormatter({ importStatement }) {
return importStatement.replace(/'/g, '"');
},
moduleNameFormatter({ moduleName, pathToCurrentFile }) {
// Without this, for some reason, npm import paths would get
// a leading slash...
return moduleName;
},
declarationKeyword: "import",
maxLineLength: 150,
stripFileExtensions: [],
excludes: ["./private/**", "./public/**", "./.meteor/**"]
};
17 changes: 17 additions & 0 deletions .meteor/.finished-upgraders
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This file contains information which helps Meteor properly upgrade your
# app when you run 'meteor update'. You should check it into version control
# with your project.

notices-for-0.9.0
notices-for-0.9.1
0.9.4-platform-file
notices-for-facebook-graph-api-2
1.2.0-standard-minifiers-package
1.2.0-meteor-platform-split
1.2.0-cordova-changes
1.2.0-breaking-changes
1.3.0-split-minifiers-package
1.4.0-remove-old-dev-bundle-link
1.4.1-add-shell-server-package
1.4.3-split-account-service-packages
1.5-add-dynamic-import-package
2 changes: 2 additions & 0 deletions .meteor/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
local
dev_bundle
7 changes: 7 additions & 0 deletions .meteor/.id
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file contains a token that is unique to your project.
# Check it into your repository along with the rest of this directory.
# It can be used for purposes such as:
# - ensuring you don't accidentally deploy one app on top of another
# - providing package authors with aggregated statistics

usuk2oen84qh.k9v3lmgqll9f
39 changes: 39 additions & 0 deletions .meteor/packages
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Meteor packages used by this project, one per line.
# Check this file (and the other files in this directory) into your repository.
#
# 'meteor add' and 'meteor remove' will edit this file for you,
# but you can also edit it by hand.

meteor-base@1.3.0 # Packages every Meteor app needs to have
mobile-experience@1.0.5 # Packages for a great mobile UX
mongo@1.4.2 # The database Meteor supports right now
reactive-var@1.0.11 # Reactive variable for tracker
tracker@1.1.3 # Meteor's client-side reactive programming library

standard-minifier-css@1.4.0 # CSS minifier run for production mode
standard-minifier-js@2.3.1 # JS minifier run for production mode
es5-shim@4.7.0 # ECMAScript 5 compatibility for older browsers
ecmascript@0.10.6 # Enable ECMAScript2015+ syntax in app code
shell-server@0.3.1 # Server-side component of the `meteor shell` command

less@2.7.11 # Leaner CSS language

aldeed:collection2 # Attach a SimpleSchema to a Mongo.Collection
dburles:collection-helpers # Add helper methods to Collection objects
aldeed:schema-deny # Enable the denyUpdate condition in SimpleSchema
aldeed:schema-index # Control some MongoDB indexing from SimpleSchema
reywood:publish-composite # When publishes need to be reactive on multiple levels of data
matb33:collection-hooks # Add before/after hooks on insert, update...

# React
static-html # Required for the root of the render tree (body/head)
react-meteor-data # Connects the meteor reactive model to react

# Methods
mdg:validated-method # Define Meteor methods in a structured way

random@1.1.0
dynamic-import@0.3.0
accounts-password@1.5.0
mizzao:timesync
percolate:synced-cron
2 changes: 2 additions & 0 deletions .meteor/platforms
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
server
browser
1 change: 1 addition & 0 deletions .meteor/release
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
METEOR@1.6.1.1
91 changes: 91 additions & 0 deletions .meteor/versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
accounts-base@1.4.2
accounts-password@1.5.0
aldeed:collection2@3.0.0
aldeed:schema-deny@3.0.0
aldeed:schema-index@3.0.0
allow-deny@1.1.0
autoupdate@1.4.0
babel-compiler@7.0.6
babel-runtime@1.2.2
base64@1.0.11
binary-heap@1.0.10
blaze-tools@1.0.10
boilerplate-generator@1.4.0
caching-compiler@1.1.11
caching-html-compiler@1.1.2
callback-hook@1.1.0
check@1.3.0
dburles:collection-helpers@1.1.0
ddp@1.4.0
ddp-client@2.3.1
ddp-common@1.4.0
ddp-rate-limiter@1.0.7
ddp-server@2.1.2
deps@1.0.12
diff-sequence@1.1.0
dynamic-import@0.3.0
ecmascript@0.10.6
ecmascript-runtime@0.5.0
ecmascript-runtime-client@0.6.2
ecmascript-runtime-server@0.5.0
ejson@1.1.0
email@1.2.3
es5-shim@4.7.3
geojson-utils@1.0.10
hot-code-push@1.0.4
html-tools@1.0.11
htmljs@1.0.11
http@1.4.0
id-map@1.1.0
launch-screen@1.1.1
less@2.7.12
livedata@1.0.18
localstorage@1.2.0
logging@1.1.19
matb33:collection-hooks@0.8.4
mdg:validated-method@1.1.0
meteor@1.8.2
meteor-base@1.3.0
minifier-css@1.3.1
minifier-js@2.3.2
minimongo@1.4.3
mizzao:timesync@0.5.0
mobile-experience@1.0.5
mobile-status-bar@1.0.14
modules@0.11.4
modules-runtime@0.9.2
mongo@1.4.3
mongo-dev-server@1.1.0
mongo-id@1.0.6
npm-bcrypt@0.9.3
npm-mongo@2.2.34
ordered-dict@1.1.0
percolate:synced-cron@1.3.2
promise@0.10.2
raix:eventemitter@0.1.3
random@1.1.0
rate-limit@1.0.9
react-meteor-data@0.2.16
reactive-var@1.0.11
reload@1.2.0
retry@1.1.0
reywood:publish-composite@1.5.2
routepolicy@1.0.12
server-render@0.3.0
service-configuration@1.0.11
sha@1.0.9
shell-server@0.3.1
shim-common@0.1.0
socket-stream-client@0.1.0
spacebars-compiler@1.1.3
srp@1.0.10
standard-minifier-css@1.4.1
standard-minifier-js@2.3.2
static-html@1.2.2
templating-tools@1.1.2
tmeasday:check-npm-versions@0.3.2
tracker@1.1.3
underscore@1.0.10
url@1.2.0
webapp@1.5.0
webapp-hashing@1.0.9
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

Nothing.

<!-- Add unreleased changes here -->

## 0.1.0 - 2018-05-16

### Added

* Initial Beta release.

[unreleased]: https://github.com/empiricaly/empirica/compare/v0.1.0...HEAD

<!--
How to add a link to the code for each version.
First make sure to put the version number in brackets (here, 1.2.3):
## [1.2.3] - 2020-01-20
### Added
* Amazing stuff
// Then at the end of the document add a link to the compare:
[1.2.3]: https://github.com/empiricaly/empirica/compare/v1.2.2...v1.2.3
-->
Loading

0 comments on commit 0eb3493

Please sign in to comment.