-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.74 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.74 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "react-starter",
"version": "1.0.0",
"description": "Start your project with react and redux",
"scripts": {
"clean": "rimraf dist",
"build": "webpack --progress --verbose --colors --display-error-details --config webpack/common.config.js",
"build:production": "npm run clean && npm run build",
"doc": "esdoc -c esdoc.json",
"test:bdd:ci": "npm run build:production && gulp bdd-ci",
"test:bdd:production": "npm run build:production && gulp bdd-local",
"test:bdd:dev": "gulp bdd-local",
"lint": "eslint src",
"start": "node bin/server.js",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/Hawatel/react-starter.git"
},
"homepage": "https://github.com/Hawatel/react-starter",
"bugs": "https://github.com/Hawatel/react-starter/issues",
"keywords": [
"react",
"reactjs",
"babel6",
"boilerplate",
"redux",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"hawatel"
],
"license": "MIT",
"authors": [
"Daniel Iwaniuk (https://github.com/diwaniuk)",
"Przemyslaw Mantaj (https://github.com/pmantaj)"
],
"contributors": [
""
],
"devDependencies": {
"autoprefixer": "6.3.1",
"babel-core": "^6.7.6",
"babel-eslint": "^5.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"bootstrap-loader": "^1.0.10",
"bootstrap-sass": "^3.3.6",
"chai": "^3.5.0",
"classnames": "^2.2.3",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "3.1.0",
"eslint-plugin-react": "^3.16.1",
"expect": "^1.18.0",
"exports-loader": "^0.6.3",
"express": "^4.13.4",
"express-open-in-editor": "^1.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"font-awesome-sass-loader": "^1.0.1",
"history": "^2.0.2",
"imports-loader": "^0.6.5",
"istanbul": "^0.4.3",
"istanbul-instrumenter-loader": "^0.2.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.4",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"mocha": "^2.4.5",
"morgan": "^1.7.0",
"node-sass": "^3.4.2",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"postcss-import": "^7.1.3",
"postcss-loader": "^0.8.2",
"react-addons-css-transition-group": "^15.0.1",
"react-document-meta": "^2.0.3",
"react-dom": "^15.0.1",
"react-hot-loader": "^1.3.0",
"react-loading-order-with-animation": "^1.0.0",
"react-transform-hmr": "^1.0.4",
"redux-cli": "^1.4.2",
"redux-form": "^5.1.0",
"redux-logger": "2.4.0",
"redux-thunk": "^1.0.3",
"resolve-url-loader": "^1.4.3",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
"sinon": "^1.17.3",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-merge": "^0.7.3"
},
"dependencies": {
"axios": "^0.9.1",
"body-parser": "^1.15.1",
"font-awesome": "^4.6.1",
"jquery": "^2.2.0",
"react": "^15.0.1",
"react-fontawesome": "^0.3.3",
"react-redux": "^4.4.5",
"react-router": "^2.3.0",
"redux": "^3.4.0",
"validator": "^5.2.0"
}
}