Skip to content

Commit 5005014

Browse files
committed
Initial check in
0 parents  commit 5005014

File tree

3 files changed

+89
-0
lines changed

3 files changed

+89
-0
lines changed

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# -*- conf -*-
2+
# Logs
3+
logs
4+
*.log
5+
6+
# Debug log from npm
7+
npm-debug.log
8+
9+
# Not meant to be in git
10+
*.nogit*
11+
*.DS_Store
12+
[Tt]humbs.db
13+
14+
# Sublime Text
15+
*.sublime-*
16+
17+
# sass
18+
.sass-cache
19+
20+
# Dependency directory
21+
node_modules
22+
23+
# bower
24+
lib/*
25+
!src/lib/*
26+
27+
# generated
28+
build
29+
README.html
30+
.#*
31+
.~*

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// ---------- Local Server Commands ----------
2+
//
3+
// To install development environemnt npm install
4+
//
5+
// To run a npm local server npm start
6+
//
7+
// connect to Server http://localhost:3000
8+
//

package.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"name": "PigLatin",
3+
"author": "Steve Saxton <[email protected]>",
4+
"description": "Angular Application",
5+
"license": "SEE LICENSE IN Shut_Up_NPM.txt",
6+
"version": "0.9.2",
7+
"scripts": {
8+
"start": "NODE_ENV=development & BABEL_ENV=development & node server",
9+
"lint": "eslint --ext .js src || true"
10+
},
11+
"dependencies": {
12+
"angular": "^1.5.8",
13+
"angular-ui-router": "^0.3.1"
14+
},
15+
"devDependencies": {
16+
"autoprefixer": "^6.4.0",
17+
"babel-core": "^6.13.2",
18+
"babel-eslint": "^6.0.3",
19+
"babel-loader": "^6.2.5",
20+
"babel-polyfill": "^6.20.0",
21+
"babel-preset-es2015": "^6.13.2",
22+
"babel-preset-stage-0": "^6.5.0",
23+
"clean-webpack-plugin": "^0.1.14",
24+
"compression": "^1.6.2",
25+
"compression-webpack-plugin": "^0.3.1",
26+
"css-loader": "^0.23.0",
27+
"eslint": "^3.3.1",
28+
"eslint-loader": "^1.5.0",
29+
"express": "^4.13.3",
30+
"extract-text-webpack-plugin": "^1.0.1",
31+
"file-loader": "^0.9.0",
32+
"html-clean-loader": "^1.0.0",
33+
"html-loader": "^0.4.0",
34+
"html-webpack-plugin": "^2.16.0",
35+
"jshint": "^2.9.3",
36+
"ng-annotate": "^1.2.1",
37+
"node-libs-browser": "^1.0.0",
38+
"node-sass": "^3.5.3",
39+
"null-loader": "^0.1.1",
40+
"postcss-loader": "^0.10.1",
41+
"raw-loader": "^0.5.1",
42+
"sass": "^0.5.0",
43+
"sass-loader": "^4.0.0",
44+
"style-loader": "^0.13.1",
45+
"webpack": "^1.13.2",
46+
"webpack-build-notifier": "^0.1.12",
47+
"webpack-dev-middleware": "^1.4.0",
48+
"webpack-hot-middleware": "^2.12.2"
49+
}
50+
}

0 commit comments

Comments
 (0)