forked from udacity/mws-restaurant-stage-3
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 4.02 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "mws-restaurant-stage-3",
"version": "4.1.0",
"description": "RESTAURANT REVIEWS",
"main": "./dist/index.html",
"scripts": {
"test": "test",
"lint": "eslint --ext .js src",
"lintfix": "eslint --fix --ext .js src",
"debug": "node inspect app.js",
"prestart": "cross-env NODE_ENV=production gulp sailsjs --silent --no-warnings",
"start": "cross-env NODE_ENV=production node app.js",
"clean": "gulp clean:all",
"clear": "gulp clean:all",
"sailsjs": "npm run build:sailsjs && npm run start",
"serve": "cross-env NODE_ENV=development gulp serve",
"dev": "cross-env NODE_ENV=development gulp serve",
"staging": "cross-env NODE_ENV=staging gulp serve:staging",
"serve:staging": "cross-env NODE_ENV=staging gulp serve:staging",
"production": "cross-env NODE_ENV=production gulp serve:production",
"serve:production": "cross-env NODE_ENV=production gulp serve:production",
"view": "cross-env NODE_ENV=production gulp view:production",
"build:development": "cross-env NODE_ENV=development gulp build:development",
"build:testing": "cross-env NODE_ENV=testing gulp build:testing",
"build:staging": "cross-env NODE_ENV=staging gulp build:staging",
"build:production": "cross-env NODE_ENV=production gulp build:production",
"build": "cross-env NODE_ENV=production gulp build --silent --no-warnings",
"build:sailsjs": "cross-env NODE_ENV=production gulp sailsjs --silent --no-warnings",
"build:github:pages": "cross-env NODE_ENV=production gulp github:pages --silent --no-warnings",
"build:all": "npm run build && npm run build:sailsjs && npm run build:github:pages",
"bower": "bower install",
"bower:update": "bower update",
"gulp": "gulp",
"prebower": "bower cache clean",
"predev": "npm install",
"prebuild:sailsjs": "npm install",
"preproduction": "npm install",
"prebuild": "npm install",
"prebuild:github:pages": "npm install",
"postinstall": "bower install"
},
"directories": {
"dist": "dist",
"doc": "docs"
},
"keywords": [
"google",
"udacity",
"udacity-nanodegree",
"restaurant",
"nanodegree"
],
"author": "Luca Iaconelli <lucabelli9@gmail.com> (https://github.com/luxdamore)",
"license": "ISC",
"private": true,
"homepage": "https://luxdamore.github.com/mws-restaurant-stage-3/",
"bugs": {
"url": "https://github.com/LuXDAmore/mws-restaurant-stage-3/issues"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"bower": "^1.8.4",
"browser-sync": "^2.24.4",
"browserslist": "^2.10.0",
"cross-env": "^5.1.6",
"del": "^3.0.0",
"eslint": "^3.19.0",
"eslint-plugin-compat": "^1.0.4",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-babel": "^6.1.2",
"gulp-brotli": "^1.2.1",
"gulp-clean-css": "^3.9.4",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.2",
"gulp-environments": "^0.1.2",
"gulp-eslint": "^3.0.1",
"gulp-filter": "^5.0.1",
"gulp-htmlhint": "^0.3.1",
"gulp-htmlmin": "^3.0.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^4.1.0",
"gulp-inject": "^4.3.2",
"gulp-inject-string": "^1.1.0",
"gulp-json-minify": "^1.2.2",
"gulp-main-bower-files": "^1.6.2",
"gulp-rev": "^7.1.2",
"gulp-sass": "^3.2.1",
"gulp-sequence": "^0.4.6",
"gulp-sourcemaps": "^2.5.1",
"gulp-stylelint": "^3.9.0",
"gulp-uglify": "^2.1.2",
"gulp-util": "^3.0.8",
"gulp-webserver": "^0.9.1",
"modern-normalize": "^0.4.0",
"stylelint": "^9.2.1",
"stylelint-no-unsupported-browser-features": "^1.0.1",
"workbox-build": "^3.2.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"critical": "^1.3.2",
"include-all": "^1.0.0",
"rc": "^1.2.8",
"sails": "^0.12.13",
"sails-disk": "~0.10.9",
"workbox-sw": "^3.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/LuXDAmore/mws-restaurant-stage-3/"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 5%",
"last 2 versions",
"not ie <= 11"
]
}