-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.14 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
93
94
95
96
97
98
99
100
{
"name": "oblique-photo-viewer",
"version": "1.0.0",
"description": "Oblique Photo Viewer",
"main": "dist/app.bundle.js",
"scripts": {
"build": "npm run format-js && gulp build",
"deploy": "git fetch --all && git checkout origin/master --force && npm install && gulp deploy",
"gh-pages": "gulp build && git subtree push --prefix dist origin gh-pages",
"lint-js": "eslint --ext .js,.jsx src/js/**",
"format-js": "eslint --ext .js,.jsx src/js/** --fix && prettier --write './**/*.{js,jsx}' || prettier --write './**/*.{js,jsx}'",
"format-css": "prettier-stylelint --write 'src/**/*.{css,scss}'",
"make-docs": "./node_modules/.bin/esdoc",
"make-downloads": "gulp make-downloads",
"start": "gulp build && http-server ./dist -o & gulp watch-files"
},
"repository": {
"type": "git",
"url": "https://github.com/CaitW/oblique-photo-viewer.git"
},
"keywords": [
"Oblique",
"Photo",
"Viewer",
"Shoreline",
"Inventory"
],
"author": "Caitlin Wolters, ASFPM",
"license": "ISC",
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"babel-core": "^6.22.1",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"del": "4.1.0",
"esdoc": "^1.0.2",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-jsx-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"gdal": "^0.9.9",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-debug": "4.0.0",
"gulp-esdoc": "^0.4.1",
"gulp-eslint": "5.0.0",
"gulp-jsonminify": "^1.0.0",
"gulp-livereload": "4.0.1",
"gulp-sass": "4.0.2",
"gulp-shell": "0.7.0",
"gulp-stylelint": "8.0.0",
"gulp-uglifycss": "^1.0.8",
"gulp-util": "^3.0.8",
"gulp-watch": "5.0.1",
"gulp-zip": "^4.0.0",
"http-server": "^0.11.1",
"json-loader": "^0.5.4",
"ogr2ogr": "^1.5.0",
"prettier": "1.16.4",
"prettier-stylelint": "^0.4.2",
"raw-loader": "2.0.0",
"stylelint-config-standard": "18.2.0",
"stylelint-scss": "3.5.4",
"stylelint-selector-bem-pattern": "2.1.0",
"webpack": "4.29.6",
"webpack-cli": "^3.3.12",
"webpack-stream": "^5.2.1"
},
"dependencies": {
"axios": "0.18.0",
"d3": "5.9.2",
"d3-array": "2.0.3",
"d3-axis": "^1.0.8",
"d3-request": "^1.0.5",
"d3-scale": "3.0.0",
"d3-selection": "^1.4.2",
"d3-shape": "^1.3.7",
"leaflet": "^1.7.1",
"leaflet-svg-shape-markers": "git+https://github.com/CaitW/Leaflet.SvgShapeMarkers.git#1d7d24b1fd886c66fbde58616ffe43c9fe9014af",
"prop-types": "^15.7.2",
"react": "16.8.6",
"react-bootstrap": "^0.31.3",
"react-dom": "16.8.6",
"react-draggable": "^3.3.2",
"react-redux": "7.0.1",
"react-svg-inline": "^2.0.0",
"redux": "4.0.1",
"reselect": "4.0.0",
"turf": "^3.0.14",
"uuid": "^3.4.0"
}
}