Commit 60810972278e8af849c36f445c1ea2b60166ece8
1 parent
aa7b4bd25d
Exists in
master
Add commonly used packages.
Showing
4 changed files
with
62 additions
and
2 deletions
Show diff stats
.meteor/packages
... | ... | @@ -4,5 +4,14 @@ |
4 | 4 | # but you can also edit it by hand. |
5 | 5 | |
6 | 6 | standard-app-packages |
7 | -autopublish | |
8 | -insecure | |
7 | +iron-router | |
8 | +coffeescript | |
9 | +sass | |
10 | +underscore | |
11 | +bootstrap-3 | |
12 | +accounts-password | |
13 | +accounts-base | |
14 | +jquery | |
15 | +check | |
16 | +audit-argument-checks | |
17 | +handlebars-server | ... | ... |
packages/.gitignore
smart.json
smart.lock
... | ... | @@ -0,0 +1,38 @@ |
1 | +{ | |
2 | + "meteor": {}, | |
3 | + "dependencies": { | |
4 | + "basePackages": { | |
5 | + "iron-router": {}, | |
6 | + "sass": {}, | |
7 | + "bootstrap-3": {}, | |
8 | + "handlebars-server": {} | |
9 | + }, | |
10 | + "packages": { | |
11 | + "iron-router": { | |
12 | + "git": "https://github.com/EventedMind/iron-router.git", | |
13 | + "tag": "v0.7.1", | |
14 | + "commit": "d1ffb3f06ea4c112132b030f2eb1a70b81675ecb" | |
15 | + }, | |
16 | + "sass": { | |
17 | + "git": "https://github.com/particle4dev/meteor-sass.git", | |
18 | + "tag": "v0.1.7", | |
19 | + "commit": "b41757f87475186b1485ec54a819d6e027ee3d88" | |
20 | + }, | |
21 | + "bootstrap-3": { | |
22 | + "git": "https://github.com/mangasocial/meteor-bootstrap-3.git", | |
23 | + "tag": "v3.2.0-1", | |
24 | + "commit": "17a63902fc6cf1096c5289d963c66cf28b474727" | |
25 | + }, | |
26 | + "handlebars-server": { | |
27 | + "git": "https://github.com/EventedMind/meteor-handlebars-server.git", | |
28 | + "tag": "v1.2.0", | |
29 | + "commit": "1b72c4e9d82af66293e50be4516c487d15d97464" | |
30 | + }, | |
31 | + "blaze-layout": { | |
32 | + "git": "https://github.com/EventedMind/blaze-layout.git", | |
33 | + "tag": "v0.2.4", | |
34 | + "commit": "b40e9b0612329288d75cf52ad14a7da64bb8618f" | |
35 | + } | |
36 | + } | |
37 | + } | |
38 | +} | ... | ... |