forked from rtivital/react-challenge-sort-and-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.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
{
"name": "react-search-and-sort",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"generate-data": "node utils/generate-data.js",
"build": "gulp build-js && gulp build-scss && gulp copy",
"start": "npm run build && gulp"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"browser-sync": "^2.11.1",
"dreamjs": "^0.1.5",
"eslint-plugin-react": "^4.2.3",
"flow-bin": "^0.36.0",
"gulp": "3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-filenames": "^2.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-if": "^2.0.0",
"gulp-load-plugins": "^1.2.0",
"gulp-minify-css": "^1.2.4",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.2.0",
"gulp-scss-lint": "^0.3.9",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"jsonfile": "^2.2.3",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^3.3.1",
"redux-logger": "^2.7.4",
"webpack": "^1.12.14",
"webpack-stream": "^3.1.0"
},
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"whatwg-fetch": "^0.11.0"
}
}