Skip to content

Commit 30d0b89

Browse files
committedDec 1, 2014
init
1 parent 030dcf8 commit 30d0b89

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+2708
-0
lines changed
 

‎.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
bower_components
2+
vendor
3+
*.log
4+
public/assets/css
5+
public/assets/js/dist
6+
composer.lock
7+
config.php

‎bower.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "return to dreamland portal",
3+
"version": "0.0.1",
4+
"authors": [
5+
"Stefano Tamagnini <yoghi@sigmalab.net>"
6+
],
7+
"main": [
8+
"sass/main.scss",
9+
"dist/css/bootstrap.css",
10+
"dist/js/bootstrap.js",
11+
"dist/fonts/glyphicons-halflings-regular.eot",
12+
"dist/fonts/glyphicons-halflings-regular.svg",
13+
"dist/fonts/glyphicons-halflings-regular.ttf",
14+
"dist/fonts/glyphicons-halflings-regular.woff"
15+
],
16+
"license": "GPLv3",
17+
"private": true,
18+
"ignore": [
19+
"**/.*",
20+
"node_modules",
21+
"bower_components",
22+
"test",
23+
"tests"
24+
],
25+
"dependencies": {
26+
"angular": "1.3.x",
27+
"angular-i18n": "1.3.x",
28+
"angular-sanitize": "1.3.x",
29+
"angular-bootstrap": "0.11.2",
30+
"angular-underscore": "*",
31+
"ngDialog": "0.3.4",
32+
"underscore": "1.7.0",
33+
"angular-ui-router": "0.2.11",
34+
"jquery": "2.1.1",
35+
"bootstrap-sass-official": "3.2.0",
36+
"fontawesome": "~4.2.0",
37+
"angular-busy": "~4.1.1",
38+
"tinysort": "*",
39+
"requirejs": "~2.1.15",
40+
"moment": "~2.8.4"
41+
}
42+
}

0 commit comments

Comments
 (0)
Please sign in to comment.