forked from aloknnikhil/orion-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.78 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
{
"name": "orion-web",
"version": "0.0.1",
"description": "Web visualization frontend for Orion",
"scripts": {
"clean": "rm -rf dist/",
"build": "sh copy-patches.sh ; webpack",
"build:watch": "npm run build -- --watch",
"start": "webpack-dev-server --watch",
"lint": "eslint .",
"test": "jest",
"test:watch": "npm run test -- --watch",
"cover": "npm run test -- --coverage",
"coveralls": "npm run cover && cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/LINKIWI/orion-web.git"
},
"author": "Kevin Lin <[email protected]>",
"license": "MIT",
"greenkeeper": {
"ignore": [
"node"
]
},
"dependencies": {
"color": "^3.0.0",
"d3-ease": "^1.0.5",
"deck.gl": "^5.3.2",
"deep-equal": "^1.0.1",
"dottie": "^2.0.0",
"geolib": "^2.0.24",
"history": "^4.7.2",
"humanize": "^0.0.9",
"humanize-duration": "^3.15.0",
"mapbox-gl": "^0.48.0",
"patturn": "^0.1.2",
"piwik-react-router": "^0.12.1",
"prop-types": "^15.6.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-elemental": "https://lib.kevinlin.info/react-elemental/89e8ff26f90b2254cca88a14f3d59d08cadb96e4/release.tgz",
"react-favicon": "^0.0.14",
"react-helmet": "^5.2.0",
"react-icons": "^3.0.5",
"react-map-gl": "^3.3.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"unfetch": "^3.0.0",
"viewport-mercator-project": "^5.2.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.2.0",
"babel-loader": "^7.1.5",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-react-elemental": "^1.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.15",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.2",
"css-loader": "^1.0.0",
"dotenv": "^6.0.0",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.0",
"eslint": "^4.19.1",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-disable": "^1.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"eslint-plugin-react": "^7.11.1",
"html-loader": "^0.5.5",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.3.0",
"node": "^8.11.3",
"raf": "^3.4.0",
"react-test-renderer": "^16.4.2",
"style-loader": "^0.22.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.6"
}
}