-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
117 lines (117 loc) · 3.58 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
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
{
"name": "opencredo-react-boilerplate",
"version": "1.0.2",
"description": "",
"main": "index.js",
"engines": {
"node": ">=5.3.0",
"npm": "^3.0.0"
},
"scripts": {
"build": "npm run test && npm run dist:clean && npm run copy:static && npm run compile",
"dist:clean": "rm -rf dist && mkdir dist",
"copy:static": "cp -r src/static/* dist",
"compile": "NODE_ENV=production webpack -p --bail",
"dev": "node --harmony server",
"dev:bs": "node --harmony server --with-browsersync",
"flow-check": "flow check",
"karma": "NODE_ENV=test karma start --single-run",
"lint": "eslint . ./",
"start": "npm run dev",
"start:bs": "npm run dev:bs",
"test": "npm run flow-check && npm run lint && npm run karma"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opencredo/opencredo-react-boilerplate.git"
},
"author": "Matt Calthrop <[email protected]> (mcalthrop)",
"contributors": [
{
"name": "Vincent Martinez",
"email": "[email protected]",
"username": "eyko"
}
],
"license": "MIT",
"dependencies": {
"axios": "^0.9.0",
"classnames": "^2.2.3",
"empty": "^0.10.1",
"lodash": "^4.5.1",
"react": "^0.14.6",
"react-bootstrap": "^0.28.2",
"react-dom": "^0.14.6",
"react-intl": "2.0.0-rc-1",
"react-redux": "^4.0.6",
"react-router": "^2.0.0",
"react-router-bootstrap": "^0.20.1",
"react-router-redux": "^2.1.0",
"redux": "^3.3.1",
"redux-form": "^4.1.8",
"redux-form-validation": "^0.0.6",
"redux-logger": "^2.3.2",
"redux-thunk": "^1.0.3",
"url": "^0.11.0"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.6.0",
"babel-runtime": "^6.5.0",
"browser-sync": "^2.11.1",
"chai": "^3.5.0",
"connect-history-api-fallback": "^1.1.0",
"core-decorators": "^0.11.0",
"css-loader": "^0.23.1",
"cssnano": "^3.5.2",
"eslint": "2.2.0",
"eslint-config-airbnb": "6.0.2",
"eslint-loader": "^1.3.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^4.1.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"flow-bin": "^0.22.1",
"fs-extra": "^0.26.4",
"html-webpack-plugin": "^2.9.0",
"isparta-loader": "^2.0.0",
"json-loader": "^0.5.4",
"karma": "^0.13.19",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.2.3",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.3",
"postcss-loader": "^0.8.0",
"react-addons-test-utils": "^0.14.6",
"react-transform-hmr": "^1.0.1",
"redux-devtools": "^3.1.1",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.2",
"sass-loader": "^3.1.2",
"sinon": "^1.17.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.11",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.7.1"
}
}