-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.34 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
{
"name": "importer-client",
"version": "0.0.1",
"description": "React Client for GeoNode Importer",
"main": "index.js",
"scripts": {
"start": "mkdir -p dist && node_modules/.bin/webpack-dev-server --progress --colors --hot --inline",
"build": "BUILD_PROD=1 webpack",
"test": "NODE_ENV=test ./node_modules/karma/bin/karma start --single-run --browsers PhantomJS",
"test:unit": "NODE_ENV=test ./node_modules/karma/bin/karma start --browsers PhantomJS --auto-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terranodo/importer-client.git"
},
"author": "Mila Frerichs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/terranodo/importer-client/issues"
},
"homepage": "https://github.com/terranodo/importer-client#readme",
"devDependencies": {
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-plugin-istanbul": "^4.0.0",
"babel-plugin-rewire": "1.0.0-rc-5",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.22.0",
"babel-template": "^6.23.0",
"babel-traverse": "^6.23.1",
"babel-types": "^6.23.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"enzyme": "^2.7.1",
"fetch-mock": "^5.6.2",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-coverage": "^1.1.1",
"karma-intl-shim": "^1.0.3",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.14",
"react-addons-test-utils": "^15.4.1",
"redux-actions-assertions": "^1.2.1",
"redux-mock-store": "^1.2.1",
"rewire": "^2.5.2",
"style-loader": "^0.13.1",
"testdouble": "^1.10.2",
"testdouble-chai": "^0.5.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"material-ui": "^0.16.5",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-dropzone": "^3.10.0",
"react-intl": "^2.1.5",
"react-redux": "^5.0.0",
"react-tap-event-plugin": "^2.0.1",
"redux-thunk": "^2.1.0",
"whatwg-fetch": "^1.0.0"
}
}