This repository has been archived by the owner on Jul 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.7 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
{
"name": "zoo-reduxify",
"version": "1.1.0",
"description": "React/Redux JS application skeleton using Wepback and other awesome tools",
"repository": {
"type": "git",
"url": "https://github.com/zooniverse/zoo-reduxify"
},
"scripts": {
"start": "BABEL_ENV=development check-engines && check-dependencies && webpack-dashboard -p 3001 -- webpack-dev-server --config ./webpack.config.js",
"test": "NODE_ENV=development BABEL_ENV=test mocha mocha-setup.js enzyme-config.js $(find src -name *.spec.jsx) --compilers js:@babel/register || true",
"eslint": "eslint .",
"build": "BABEL_ENV=production check-engines && check-dependencies && webpack --config webpack.production.config.js -p"
},
"engines": {
"node": "^8.1.2",
"npm": ">=5"
},
"author": "Zooniverse",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zooniverse/zoo-reduxify"
},
"homepage": "https://github.com/zooniverse/zoo-reduxify",
"dependencies": {
"history": "~4.6.3",
"panoptes-client": "~2.11.2",
"prop-types": "~15.6.2",
"react": "~16.5.2",
"react-dom": "~16.5.2",
"react-redux": "~5.0.5",
"react-router": "~4.3.1",
"react-router-dom": "~4.3.1",
"redux": "~3.7.2",
"redux-devtools-extension": "~2.13.2",
"redux-logger": "~3.0.6",
"redux-thunk": "~2.2.0",
"zooniverse-react-components": "github:zooniverse/Zooniverse-React-Components#v0.7.1"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "~10.0.1",
"babel-loader": "^8.0.4",
"chai": "~4.2.0",
"check-dependencies": "~1.1.0",
"check-engines": "~1.5.0",
"clean-webpack-plugin": "~0.1.19",
"css-loader": "~1.0.0",
"dirty-chai": "~2.0.1",
"enzyme": "~3.7.0",
"enzyme-adapter-react-16": "~1.6.0",
"eslint": "~5.6.1",
"eslint-config-airbnb": "~17.1.0",
"eslint-loader": "~2.1.1",
"eslint-plugin-import": "~2.14.0",
"eslint-plugin-jsx-a11y": "~6.1.2",
"eslint-plugin-react": "~7.11.1",
"eventsource-polyfill": "~0.9.6",
"express": "~4.16.3",
"file-loader": "~2.0.0",
"html-webpack-plugin": "~3.2.0",
"image-webpack-loader": "~4.3.1",
"jsdom": "~12.2.0",
"json-loader": "~0.5.7",
"mini-css-extract-plugin": "~0.4.4",
"mocha": "~5.2.0",
"nib": "~1.1.2",
"react-test-renderer": "~16.5.2",
"rimraf": "~2.6.2",
"sinon": "~6.3.5",
"stats-webpack-plugin": "~0.7.0",
"style-loader": "~0.23.1",
"stylus": "~0.54.5",
"stylus-loader": "~3.0.2",
"webpack": "~4.20.2",
"webpack-cli": "~3.1.2",
"webpack-dashboard": "~2.0.0",
"webpack-dev-server": "~3.1.9"
}
}