forked from udacity/mws-restaurant-stage-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.52 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
{
"name": "mws-restaurant",
"version": "1.0.0",
"description": "--- #### _Three Stage Course Material Project - Restaurant Reviews_",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --compress --host localhost --port 8080 --mode development --open & node server.js",
"audit": "node server.js",
"watch": "webpack --watch --mode development",
"images": "grunt images",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/R-H-T/mws-restaurant-stage-1.git"
},
"author": "Roberth Hansson-Tornéus",
"license": "ISC",
"bugs": {
"url": "https://github.com/R-H-T/mws-restaurant-stage-1/issues"
},
"homepage": "https://github.com/R-H-T/mws-restaurant-stage-1#readme",
"browserslist": [
"last 2 versions"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
],
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
]
},
"dependencies": {
"fetch": "^1.1.0",
"intersection-observer": "^0.5.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"compression": "^1.7.2",
"copy-webpack-plugin": "^4.5.1",
"cors": "^2.8.4",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"express": "^4.16.3",
"file-loader": "^1.1.11",
"grunt": "^1.0.3",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-mkdir": "^1.0.0",
"grunt-responsive-images": "^1.10.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.1.0",
"idb": "^2.1.1",
"image-webpack-loader": "^4.3.1",
"img-loader": "^2.0.1",
"jest": "^22.4.3",
"load-google-maps-api": "^1.2.1",
"lodash": "^4.17.5",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.3",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"postcss-loader": "^2.1.3",
"sass-loader": "^6.0.7",
"sequelize": "^4.37.10",
"sqlite3": "^4.0.2",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.1.5",
"webpack-hot-middleware": "^2.22.1",
"websocket": "^1.0.25",
"ws": "^5.1.1"
}
}