-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 947 Bytes
/
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
{
"name": "mock-grocery-list",
"version": "1.0.0",
"description": "A mock Angular application that mimics a grocery list. This project is intended as an assessment tool and exercise when talking with other developers, and is not a legitimate application.",
"scripts": {
"build": "node_modules/gulp/bin/gulp.js",
"serve": "node_modules/http-server/bin/http-server",
"start": "npm install && npm run build && npm run serve"
},
"repository": {
"type": "git",
"url": "https://github.com/nrutman/mock-grocery-list.git"
},
"author": "Nathan Rutman",
"homepage": "https://github.com/nrutman/mock-grocery-list",
"devDependencies": {
"del": "^2.2.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-jshint": "^2.0.0",
"gulp-ng-annotate": "^1.1.0",
"gulp-ng-html2js": "^0.2.0",
"gulp-sass": "^2.1.1",
"gulp-uglify": "^1.5.1",
"http-server": "^0.8.5",
"jshint": "^2.8.0"
}
}