-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.32 KB
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
{
"name": "AirTrafficFE",
"version": "1.0.0",
"description": "Application that monitors air traffic in proximity of users current location",
"main": "index.js",
"repository": "https://github.com/dejan-krstic/air-traffic-fe-test.git",
"author": "dejan-krstic <dejanmkrstic@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"deploy": "gh-pages -d dist",
"start": "webpack-dev-server --config webpack.dev.js",
"dist": "webpack --config webpack.prod.js",
"dist-and-run": "yarn run dist && http-server ./dist -c-1 -o"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.24.4",
"browser-sync-webpack-plugin": "^2.2.2",
"css-loader": "^0.28.11",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^1.1.11",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"image-webpack-loader": "^4.2.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.8.2",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"jsonp": "^0.2.1",
"normalize.css": "^8.0.0"
}
}