-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
165 lines (165 loc) · 5.22 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "maap-common-mapping-client",
"version": "1.1.0",
"description": "making a mapping app with react, redux, and friends",
"files": [
"dist/**/*"
],
"main": "dist/bundle.js",
"scripts": {
"prestart": "npm run prep:dist",
"precommit": "lint-staged",
"start": "npm run open:src",
"start:dist": "npm run build && npm run open:dist",
"open:src": "babel-node scripts/srcServer.js",
"open:dist": "babel-node scripts/distServer.js",
"prebuild": "npm run prep:dist",
"build": "babel-node scripts/build.js > dist/build-report.txt",
"postbuild": "scripts/postbuild.sh",
"build:html": "babel-node scripts/buildHtml.js",
"prep:dist": "npm run clean:dist && mkdir dist",
"clean:dist": "node_modules/.bin/rimraf ./dist",
"clean:test": "node_modules/.bin/rimraf ./test-results",
"clean": "npm run clean:dist && npm run clean:test",
"pretest": "npm run clean:test",
"prettier-all": "node_modules/.bin/prettier --config .prettierrc --write './src/**/*(*.css|*.js|*.scss)'",
"test": "cross-env NODE_ENV=test karma start karma.conf.js",
"analyze-bundle": "babel-node ./scripts/analyzeBundle.js"
},
"author": "Flynn Platt",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/node": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/plugin-transform-react-constant-elements": "7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/polyfill": "7.2.5",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "7.2.0",
"@material-ui/core": "3.8.2",
"@material-ui/icons": "3.0.2",
"@material-ui/lab": "3.0.0-alpha.30",
"autoprefixer": "9.4.4",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"babel-plugin-istanbul": "5.1.0",
"babel-plugin-react-display-name": "2.0.0",
"babel-plugin-transform-es3-member-expression-literals": "6.22.0",
"babel-plugin-transform-es3-property-literals": "6.22.0",
"babel-preset-react-hmre": "1.1.1",
"browser-sync": "2.26.7",
"cesium": "1.57.0",
"chai": "4.2.0",
"clean-css": "4.2.1",
"colors": "1.3.3",
"compression": "1.7.3",
"connect-history-api-fallback": "1.5.0",
"coveralls": "3.0.2",
"cross-env": "5.2.0",
"css-loader": "2.1.0",
"enzyme": "3.8.0",
"es6-promise": "4.2.5",
"eslint": "5.12.0",
"eslint-loader": "2.1.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-react": "7.12.3",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "3.0.1",
"fuzzysearch": "1.0.3",
"html-webpack-plugin": "3.2.0",
"husky": "1.3.1",
"immutability-helper": "2.6.2",
"immutable": "3.8.2",
"install": "0.12.2",
"isomorphic-fetch": "2.2.1",
"js-quantities": "1.7.3",
"jss": "9.8.7",
"karma": "4.1.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "2.0.0",
"karma-coverage": "1.1.2",
"karma-htmlfile-reporter": "0.3.7",
"karma-junit-reporter": "1.2.0",
"karma-mocha": "1.3.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-requirejs": "1.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "3.0.5",
"lint-staged": "8.1.0",
"mdi-material-ui": "5.8.0",
"mocha": "5.2.0",
"modernizr": "3.7.1",
"modernizr-loader": "1.0.1",
"moment": "2.23.0",
"node-sass": "6.0.0",
"normalize.css": "8.0.1",
"nyc": "14.1.1",
"object-assign": "4.1.1",
"ol": "5.3.0",
"path": "0.12.7",
"phantomjs-prebuilt": "2.1.16",
"postcss": "7.0.7",
"postcss-cssnext": "3.1.0",
"postcss-import": "12.0.1",
"postcss-load-config": "2.0.0",
"postcss-loader": "3.0.0",
"prettier": "1.15.3",
"proj4": "2.5.0",
"prop-types": "15.6.2",
"puppeteer": "1.16.0",
"raw-loader": "1.0.0",
"rc-slider": "8.6.9",
"react": "16.7.0",
"react-addons-css-transition-group": "15.6.2",
"react-addons-test-utils": "15.6.2",
"react-addons-update": "15.6.2",
"react-contextmenu": "2.10.0",
"react-dom": "16.7.0",
"react-event-listener": "0.6.5",
"react-ga": "2.5.6",
"react-jss": "8.6.1",
"react-key-handler": "1.1.0",
"react-popper": "0.10.4",
"react-redux": "6.0.0",
"react-tap-event-plugin": "3.0.3",
"react-transition-group": "2.5.2",
"recompose": "0.30.0",
"redux": "4.0.1",
"redux-thunk": "2.3.0",
"requirejs": "2.3.6",
"rimraf": "2.6.3",
"sass-loader": "7.1.0",
"script-loader": "0.7.2",
"showdown": "1.9.0",
"sinon": "7.2.2",
"sinon-chai": "3.3.0",
"style-ext-html-webpack-plugin": "4.0.1",
"style-loader": "0.23.1",
"turf-area": "3.0.12",
"turf-centroid": "3.0.12",
"turf-line-distance": "3.0.12",
"url-loader": "1.1.2",
"uuid": "3.3.2",
"vis": "4.21.0",
"webpack": "4.28.3",
"webpack-bundle-analyzer": "3.3.2",
"webpack-dev-middleware": "3.5.0",
"webpack-hot-middleware": "2.24.3",
"which": "1.3.1",
"worker-loader": "2.0.0"
},
"lint-staged": {
"src/**/*.{js,css,scss}": [
"prettier --config .prettierrc --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/MAAP-Project/maap-common-mapping-client"
}
}