-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "frontend-nanodegreee-neighborhood-map",
"version": "1.0.0",
"description": "A neighborhood map application for Udacity's Front-End Web Developer Nanodegree",
"main": "./js/app.js",
"scripts": {
"start": "gulp build && cd dist && http-server -p 8080 -o",
"dev": "gulp develop",
"demo": "gulp build && cd dist && http-server -p 8080 -o",
"deploy": "gulp build && gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mggwxyz/frontend-nanodegree-neighborhood-map.git"
},
"author": "Michael Gilbertson",
"license": "MIT",
"bugs": {
"url": "https://github.com/mggwxyz/frontend-nanodegree-neighborhood-map/issues"
},
"homepage": "https://github.com/mggwxyz/frontend-nanodegree-neighborhood-map#readme",
"dependencies": {
"oauth-signature": "^1.3.1"
},
"devDependencies": {
"browser-sync": "^2.17.3",
"del": "^2.0.2",
"gh-pages": "^0.12.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-cache": "^0.4.6",
"gulp-cssnano": "^2.1.2",
"gulp-if": "^2.0.2",
"gulp-pug": "^3.3.0",
"gulp-sass": "^2.3.2",
"gulp-uglify": "^2.1.2",
"gulp-useref": "^3.1.2",
"http-server": "^0.9.0",
"run-sequence": "^1.2.2"
}
}