forked from DAVFoundation/missions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.21 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
{
"name": "missions",
"version": "0.2.0",
"description": "Missions is the client facing side of the marketplace connecting DAV users looking to ship packages, with autonomous vehicles.",
"homepage": "https://github.com/DAVFoundation/missions#readme",
"bugs": {
"url": "https://github.com/DAVFoundation/missions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/DAVFoundation/missions.git"
},
"license": "MIT",
"author": "Tal Ater <[email protected]>",
"scripts": {
"build": "webpack --config webpack.prod.js",
"build-stg": "webpack --config webpack.stg.js",
"start": "webpack-dev-server --config webpack.dev.js",
"start-stg": "webpack-dev-server --config webpack.stg.js",
"stop": "kill $(ps aux | grep 'webpack' | awk '{print $2}')",
"test": "jest"
},
"jest": {
"moduleNameMapper": {
"\\.(css|jpg|png|svg)$": "<rootDir>/empty-module.js"
}
},
"dependencies": {
"@turf/turf": "^5.1.6",
"callback-timeout": "^3.0.1",
"mapbox-gl": "~0.44.1",
"moment": "^2.20.1",
"randomstring": "^1.1.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-geosuggest": "^2.7.0",
"react-rangeslider": "^2.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-devtools-extension": "^2.13.2",
"redux-promise-middleware": "5.0.0",
"truffle-contract": "^3.0.4",
"turf": "^3.0.14",
"web3": "^1.0.0-beta.34"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.4.1",
"css-loader": "^0.28.9",
"eslint": "^4.18.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.9",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.4.0",
"style-loader": "^0.20.2",
"uglifyjs-webpack-plugin": "^1.2.0",
"url-loader": "^0.6.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1",
"webpack-merge": "^4.1.1"
}
}