forked from udacity/mws-restaurant-stage-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.63 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
{
"name": "HintEat",
"version": "0.7.0-alpha",
"description": "The portal for restaurant and meal reviews",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"betterScripts": {
"serve.dev": {
"command": "gulp webpack:serve:dev",
"env": {
"BASEURL": "localhost:9000",
"MAPSAPIKEY": "AIzaSyCODrZS_NUqQ3uJSry7i7XQWzo349jDqng",
"APIBASEURL": "http://localhost:1337"
}
},
"build.dev": {
"command": "gulp webpack:build:dev",
"env": {
"BASEURL": "127.0.0.1",
"MAPSAPIKEY": "AIzaSyCODrZS_NUqQ3uJSry7i7XQWzo349jDqng",
"APIBASEURL": "http://localhost:1337"
}
},
"build.prod": {
"command": "gulp webpack:build:prod",
"env": {
"BASEURL": "127.0.0.1",
"MAPSAPIKEY": "AIzaSyCODrZS_NUqQ3uJSry7i7XQWzo349jDqng",
"APIBASEURL": "http://localhost:1337"
}
},
"build.optimized.prod": {
"command": "gulp webpack:build:prod && cd dist && sudo ws --https --spa index.html --compress --port 443",
"env": {
"BASEURL": "127.0.0.1",
"MAPSAPIKEY": "AIzaSyCODrZS_NUqQ3uJSry7i7XQWzo349jDqng",
"APIBASEURL": "http://localhost:1337"
}
},
"build.optimized.prod.windows": {
"command": "gulp webpack:build:prod && cd dist && ws --https --spa index.html --compress --port 443",
"env": {
"BASEURL": "127.0.0.1",
"MAPSAPIKEY": "AIzaSyCODrZS_NUqQ3uJSry7i7XQWzo349jDqng",
"APIBASEURL": "http://localhost:1337"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Collets/hinteat-client.git"
},
"author": "Simone Coletta",
"license": "ISC",
"bugs": {
"url": "https://github.com/Collets/hinteat-client/issues"
},
"homepage": "https://github.com/Collets/hinteat-client#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"better-npm-run": "^0.1.0",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.4.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.9",
"del": "^3.0.0",
"eslint": "^4.18.1",
"eslint-config-google": "^0.9.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.9",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-nunjucks": "^3.1.1",
"gulp-print": "^5.0.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^2.30.1",
"htmllint-loader": "^2.1.4",
"node-sass": "^4.9.3",
"nunjucks-loader": "^2.4.9",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"sass-loader": "^6.0.6",
"uglifyjs-webpack-plugin": "^1.2.2",
"url-loader": "^0.6.2",
"vinyl-paths": "^2.1.0",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.2",
"webpack-merge": "^4.1.1",
"webpack-stream": "^4.0.3",
"workbox-webpack-plugin": "^3.0.1"
},
"dependencies": {
"@material/button": "^0.32.0",
"@material/card": "^0.32.0",
"@material/dialog": "^0.33.0",
"@material/drawer": "^0.30.0",
"@material/grid-list": "^0.30.0",
"@material/icon-button": "^0.36.0",
"@material/icon-toggle": "^0.32.0",
"@material/list": "^0.32.0",
"@material/select": "^0.32.0",
"@material/textfield": "^0.32.0",
"@material/toolbar": "^0.32.0",
"firebase": "^4.12.0",
"firebaseui": "^2.7.0",
"focus-trap": "^2.4.3",
"idb": "^2.1.2",
"load-google-maps-api": "^1.1.1",
"navigo": "^7.1.1",
"nunjucks": "^3.1.2",
"perfect-scrollbar": "^1.4.0",
"toastr": "^2.1.4",
"uuid": "^3.3.2"
}
}