-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (51 loc) · 1.6 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
{
"name": "react-auto-fetching-example",
"version": "0.0.0",
"description": "An example of React application using Baobab cursors to describe data dependencies in components with auto-fetching",
"repository": "mistadikay/react-auto-fetching-example",
"author": "Denis Koltsov <iam@mistadikay.com> (https://github.com/mistadikay)",
"dependencies": {
"webpack": "1.12.x",
"style-loader": "0.12.x",
"css-loader": "0.16.x",
"less": "2.5.x",
"less-loader": "2.2.x",
"url-loader": "0.5.x",
"json-loader": "0.5.x",
"html-webpack-plugin": "1.6.x",
"babel": "5.8.x",
"babel-runtime": "5.8.x",
"babel-core": "5.8.x",
"babel-loader": "5.3.x",
"react": "0.13.x",
"flux": "2.1.x",
"superagent": "1.3.x",
"baobab": "2.0.0-rc1",
"emmett": "3.1.x",
"lodash.isequal": "3.0.x",
"gulp": "gulpjs/gulp#4.0",
"gulp-util": "3.0.x",
"gulp-rename": "1.2.x",
"del": "1.2.x"
},
"devDependencies": {
"husky": "0.9.x",
"webpack-dev-server": "1.10.x",
"eslint": "1.2.x",
"babel-eslint": "4.1.x",
"eslint-plugin-babel": "2.1.x",
"eslint-plugin-react": "3.3.x"
},
"scripts": {
"gulp": "./node_modules/.bin/babel-node ./node_modules/.bin/gulp --gulpfile gulpfile.es6",
"lint": "eslint --ext .es6 .",
"test": "NODE_ENV=test npm run lint",
"start": "NODE_ENV=development npm run gulp dev",
"prepush": "npm run test"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mistadikay/react-auto-fetching-example/issues"
},
"homepage": "https://github.com/mistadikay/react-auto-fetching-example#readme"
}