-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.9 KB
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
{
"name": "redux-firebase-blog",
"version": "0.2.0",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"watch": "webpack-dev-server --config ./webpack/webpack.Development.config --colors",
"build": "rimraf dist && webpack --config ./webpack/webpack.Production.config --colors",
"start": "node index.js",
"test": "ava --concurrency=5",
"test:watch": "npm run test -- --watch",
"lint": "eslint src/**/*.{js,jsx} test/**/*.spec.{js,jsx} --fix"
},
"author": "Dmytro Lebedynskyi",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.3.7",
"ava": "^0.15.2",
"babel-eslint": "^6.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"chai": "^3.5.0",
"chai-immutable": "^1.6.0",
"css-loader": "^0.23.1",
"dirty-chai": "^1.2.2",
"enzyme": "^2.4.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"ignore-styles": "^4.0.0",
"node-sass": "^3.8.0",
"postcss-loader": "^0.9.1",
"proxyquire": "^1.7.10",
"react-addons-test-utils": "15.1.0",
"react-immutable-proptypes": "^1.7.1",
"rimraf": "^2.5.3",
"sass-loader": "^3.2.1",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"babel-core": "^6.10.4",
"classnames": "^2.2.5",
"express": "^4.14.0",
"firebase": "^3.1.0",
"history": "^2.1.2",
"immutable": "^3.8.1",
"lodash": "^4.13.1",
"moment": "^2.14.1",
"normalize.css": "^4.2.0",
"react": "15.1.0",
"react-addons-css-transition-group": "15.1.0",
"react-dom": "15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.5.2",
"react-router-redux": "^4.0.5",
"react-rte": "^0.5.0",
"react-toolbox": "^1.0.1",
"recompose": "^0.20.2",
"redux": "^3.5.2",
"redux-immutablejs": "0.0.8",
"redux-thunk": "^2.1.0",
"sanitizer": "^0.1.3"
},
"ava": {
"files": [
"test/**/*.spec.{js,jsx}"
],
"source": [
"src/**/*.{js,jsx}"
],
"failFast": true,
"require": [
"babel-register",
"ignore-styles",
"./test/testSetup"
],
"babel": "inherit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dlebedynskyi/Redux-Firebase-blog.git"
},
"bugs": {
"url": "https://github.com/dlebedynskyi/Redux-Firebase-blog/issues"
},
"homepage": "https://github.com/dlebedynskyi/Redux-Firebase-blog#readme",
"description": ""
}