-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.82 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.82 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "flights",
"version": "1.0.0",
"description": "Using Dijkstra's algorithm (\"finding the shortest distance between nodes in a graph\") to show maps 🌍.",
"main": "index.js",
"scripts": {
"pack": "webpack -p --progress --profile --colors",
"start": "webpack -p --progress --profile --colors && node server",
"start:dev": "node server",
"start:pro": "export NODE_ENV=production PORT=8100 && node server "
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhangwinning/flights.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zhangwinning/flights/issues"
},
"homepage": "https://github.com/zhangwinning/flights#readme",
"engines": {
"node": ">=6"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-react": "^7.0.0-beta.42",
"antd": "^3.23.2",
"autoprefixer": "^8.2.0",
"babel-loader": "^8.0.0-beta.2",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"echarts": "^4.2.1",
"echarts-for-react": "^2.0.15-beta.0",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"geolib": "^3.0.4",
"html-webpack-plugin": "^3.1.0",
"nodemon": "^1.17.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-github-corner": "^2.3.0",
"react-hot-loader": "^4.0.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"style-loader": "^0.20.3",
"uglifyjs-3-webpack-plugin": "^1.2.4",
"webpack": "^4.2.0",
"webpack-dev-middleware": "^3.0.1",
"webpack-hot-middleware": "^2.21.2",
"webpack-merge": "^4.1.2",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"webpack-cli": "^3.1.1"
}
}