This repository has been archived by the owner on Mar 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.8 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "app-of-ice-and-fire",
"version": "0.6.0",
"description": "an app of ice and fire",
"main": "src/index.html",
"scripts": {
"postinstall": "node ./node_modules/bower/bin/bower install -q && npm run fix-fa",
"fix-fa": "npm run fix-fa:ver && npm run fix-fa:ie",
"fix-fa:ver": "replace '\\?v=4\\.7\\.0' '' ODP/WebContent/libs/fontawesome/css/*.css -s",
"fix-fa:ie": "replace '\\?#iefix&v=4\\.7\\.0' '' ODP/WebContent/libs/fontawesome/css/*.css -s",
"build": "gulp build",
"build:watch": "gulp",
"dev": "concurrently --kill-others \"npm run json-srv\" \"npm run bs-srv\" \"npm run build:watch\"",
"bs-srv": "browser-sync start --port 8000 --proxy localhost:3000",
"json-srv": "json-server --quiet --id unid db.json --watch --routes routes.json --static ODP/WebContent/",
"clean": "del-cli 'ODP/WebContent/*' '!ODP/WebContent/WEB-INF' '!ODP/WebContent/lib'",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "[email protected]:edm00se/AnAppOfIceAndFire.git"
},
"author": {
"name": "Eric McCormick",
"url": "https://ericmccormick.io"
},
"license": "MIT",
"dependencies": {
"bower": "1.8.0",
"concurrently": "3.1.0",
"del-cli": "0.2.1"
},
"devDependencies": {
"browser-sync": "2.18.2",
"compression": "1.6.2",
"del": "2.2.2",
"gulp": "3.9.1",
"gulp-concat": "2.6.1",
"gulp-inject": "4.1.0",
"gulp-jshint": "2.0.4",
"gulp-minify-css": "1.2.4",
"gulp-minify-html": "1.0.6",
"gulp-ng-annotate": "2.0.0",
"gulp-rename": "1.2.2",
"gulp-sourcemaps": "1.9.1",
"gulp-uglify": "2.0.0",
"gulp-util": "3.0.7",
"jshint": "2.9.4",
"jshint-stylish": "2.2.1",
"json-server": "0.9.4",
"replace": "0.3.0",
"run-sequence": "1.2.2"
}
}