Skip to content

Commit cbfc78b

Browse files
committed
Intial commit
1 parent b8db01b commit cbfc78b

File tree

3 files changed

+97
-0
lines changed

3 files changed

+97
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,9 @@ node_modules
3131

3232
# Optional REPL history
3333
.node_repl_history
34+
35+
#ignoring bower_components
36+
bower_components
37+
38+
#ignoring bundles
39+
public/js

bower.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "jeepsers",
3+
"description": "An online marketplace for selling off road vehicles.",
4+
"main": "server.js",
5+
"authors": [
6+
"Micah Wells <micahp0506@gmail.com>"
7+
],
8+
"license": "MIT",
9+
"homepage": "https://github.com/micahp0506/jeeps",
10+
"moduleType": [],
11+
"ignore": [
12+
"**/.*",
13+
"node_modules",
14+
"bower_components",
15+
"test",
16+
"tests"
17+
],
18+
"dependencies": {
19+
"jquery": "^2.1.4",
20+
"bootstrap": "^3.3.5",
21+
"magnific-popup": "^1.0.0",
22+
"toastr": "^2.1.1"
23+
}
24+
25+
}

package.json

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"name": "jeeps",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "server.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1",
8+
"start": "node server.js",
9+
"watch": "nodemon server.js"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/micahp0506/jeeps.git"
14+
},
15+
"author": "Micah Wells <micahp0506@gmail.com>",
16+
"license": "MIT",
17+
"bugs": {
18+
"url": "https://github.com/micahp0506/jeeps/issues"
19+
},
20+
"babel": {
21+
"presets": ["es2015", "react"]
22+
},
23+
"dependencies": {
24+
"alt": "^0.17.8",
25+
"async": "^1.5.0",
26+
"body-parser": "^1.14.1",
27+
"colors": "^1.1.2",
28+
"compression": "^1.6.0",
29+
"express": "^4.13.3",
30+
"history": "^1.13.0",
31+
"mongoose": "^4.2.5",
32+
"morgan": "^1.6.1",
33+
"react": "^0.14.2",
34+
"react-dom": "^0.14.2",
35+
"react-router": "^1.0.0",
36+
"request": "^2.65.0",
37+
"serve-favicon": "^2.3.0",
38+
"socket.io": "^1.3.7",
39+
"swig": "^1.4.2",
40+
"underscore": "^1.8.3",
41+
"xml2js": "^0.4.15"
42+
},
43+
"devDependencies": {
44+
"babel-core": "^6.1.19",
45+
"babel-preset-es2015": "^6.1.18",
46+
"babel-preset-react": "^6.1.18",
47+
"babel-register": "^6.3.13",
48+
"babelify": "^7.2.0",
49+
"bower": "^1.6.5",
50+
"browserify": "^12.0.1",
51+
"gulp": "^3.9.0",
52+
"gulp-autoprefixer": "^3.1.0",
53+
"gulp-concat": "^2.6.0",
54+
"gulp-cssmin": "^0.1.7",
55+
"gulp-if": "^2.0.0",
56+
"gulp-less": "^3.0.3",
57+
"gulp-plumber": "^1.0.1",
58+
"gulp-sourcemaps": "^1.6.0",
59+
"gulp-uglify": "^1.4.2",
60+
"gulp-util": "^3.0.7",
61+
"vinyl-buffer": "^1.0.0",
62+
"vinyl-source-stream": "^1.1.0",
63+
"watchify": "^3.6.0"
64+
},
65+
"homepage": "https://github.com/micahp0506/jeeps#readme"
66+
}

0 commit comments

Comments
 (0)