-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
137 lines (137 loc) · 4.21 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "react-starter",
"version": "0.1.0",
"description": "A boiler-plate setup for React/Redux applications",
"license": "MIT",
"engines": {
"node": "6"
},
"scripts": {
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production webpack -p",
"clean": "rimraf dist/ coverage/",
"cover": "istanbul report --include=**/chrome/coverage-final.json text text-summary",
"dev": "cross-env NODE_ENV=development webpack-dev-server -d --inline --hot --progress --no-info",
"lint": "npm run lint-js && npm run lint-css",
"lint-css": "stylelint './src/**/*.css'",
"lint-js": "eslint '**/*.js' --ignore-path .gitignore",
"postinstall": "npm run build",
"start": "cross-env NODE_ENV=production http-server ./dist",
"pretest": "npm run clean coverage/ && npm run lint",
"test": "karma start --singleRun true",
"posttest": "npm run cover",
"test:watch": "karma start --singleRun false",
"deploy:heroku": "git subtree push --prefix dist heroku master"
},
"dependencies": {
"autoprefixer": "^6.3.3",
"babel": "^6.5.2",
"babel-cli": "^6.8.0",
"babel-core": "^6.4.0",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.1",
"babel-plugin-transform-react-constant-elements": "^6.8.0",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.11.0",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.9.0",
"body-parser": "^1.15.1",
"classnames": "^2.2.3",
"concurrently": "^2.0.0",
"cross-env": "^2.0.0",
"cross-spawn": "^5.0.1",
"css-loader": "^0.23.0",
"cssnano": "^3.7.2",
"denodeify": "^1.2.1",
"enzyme": "^2.4.1",
"es5-shim": "^4.5.9",
"es6-promise": "^3.2.1",
"es6-shim": "^0.35.1",
"eslint": "^3.2.1",
"eslint-loader": "^1.4.1",
"eslint-plugin-react": "^6.0.0",
"express": "^4.13.3",
"file-loader": "^0.9.0",
"helmet": "^2.0.0",
"history": "^3.0.0",
"html-webpack-plugin": "^2.9.0",
"http-proxy": "^1.12.1",
"http-server": "^0.9.0",
"immutable": "^3.7.5",
"istanbul": "^1.0.0-alpha.2",
"istanbul-instrumenter-loader": "^0.2.0",
"jasmine-core": "^2.4.1",
"jquery": "^3.1.1",
"json-loader": "^0.5.4",
"karma": "^1.1.1",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-remap-istanbul": "^0.1.0",
"karma-sinon": "^1.0.5",
"karma-source-map-support": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"lodash": "^4.17.4",
"material-ui": "^0.17.0",
"moment": "^2.17.1",
"moment-timezone": "^0.5.11",
"nodemon": "^1.9.2",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"postcss-cssnext": "^2.4.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"postcss-modules-local-by-default": "^1.1.1",
"react": "^15.4.1",
"react-addons-test-utils": "~15.1.0",
"react-bootstrap": "^0.30.7",
"react-dom": "~15.4.1",
"react-google-maps": "^6.0.1",
"react-hot-loader": "^1.3.0",
"react-moment": "^0.2.2",
"react-redux": "^4.4.2",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.0",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.3.1",
"redux-debounced": "^0.3.0",
"redux-form": "^5.3.2",
"redux-localstorage": "^0.4.0",
"redux-logger": "^2.1.4",
"redux-thunk": "^2.0.1",
"require-hacker": "^2.1.2",
"rimraf": "^2.4.3",
"sinon": "^1.17.3",
"style-loader": "^0.13.0",
"stylelint": "^6.8.0",
"stylelint-webpack-plugin": "^0.2.0",
"tachyons": "^4.5.5",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.12.0",
"webpack-split-by-path": "0.0.10",
"whatwg-fetch": "^1.0.0",
"winston": "^2.1.1"
},
"keywords": [
"react",
"redux",
"starter",
"seed"
],
"repository": {
"type": "git",
"url": "git://github.com/rangle/react-starter.git"
},
"bugs": {
"url": "https://github.com/rangle/rangle-starter/issues"
},
"devDependencies": {
"react-hot-loader": "^3.0.0-beta.6",
"redux-debounce": "^1.0.1"
}
}