-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 3.36 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
{
"name": "CaucusCentralFrontend",
"version": "0.0.1",
"description": "Front end for Caucus Central — An organizing tool for the Iowa Caucuses",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint ./src/**/*.js",
"lint:tests": "eslint ./tests/**/*.spec.js",
"compile": "webpack",
"start": "npm run dev",
"dev": "node --harmony bin/server",
"dev:nw": "npm run dev -- --nw",
"dev:no-debug": "npm run dev -- --no_debug",
"test": "node ./node_modules/karma/bin/karma start",
"test:dev": "npm run test -- --watch",
"deploy": "rm -rf ./dist && NODE_ENV=production API_HOST=caucus-central.herokuapp.com npm run compile && node deploy.js",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bernie-2016/CaucusCentralFrontend.git"
},
"contributors": [
"Ryan Carey <me@ryancarey.ca> (http://ryancarey.ca)",
"Zach Schneider <zachschneider@berniesanders.com>",
"todo: add yourselves"
],
"license": "AGPL-3.0",
"dependencies": {
"babel": "^5.8.23",
"bootstrap": "^3.3.6",
"chalk": "^1.1.1",
"clipboard": "^1.5.8",
"cssnano": "^3.3.2",
"dotenv": "^1.2.0",
"highcharts-release": "^4.2.1",
"history": "1.13.1",
"jquery": "^2.2.0",
"lodash": "^4.0.0",
"noty": "^2.3.8",
"papaparse": "^4.1.2",
"react": "^0.14.0",
"react-bootstrap": "^0.28.2",
"react-dom": "^0.14.0",
"react-highcharts": "^6.0.0",
"react-loader": "^2.0.0",
"react-maskedinput": "^3.0.0",
"react-mixin": "^2.0.2",
"react-redux": "^4.0.1",
"react-router": "1.0.0",
"reactable": "^0.12.2",
"redux": "^3.0.5",
"redux-api-middleware": "^1.0.0-beta3",
"redux-localstorage": "0.4.0",
"redux-simple-router": "^0.0.10",
"redux-thunk": "^1.0.0",
"yargs": "^3.18.0"
},
"devDependencies": {
"babel-eslint": "^4.1.1",
"babel-loader": "^5.0.0",
"babel-plugin-react-transform": "^1.1.0",
"babel-runtime": "^5.8.20",
"chai-as-promised": "^5.1.0",
"connect-history-api-fallback": "^1.1.0",
"copy-webpack-plugin": "^0.3.3",
"css-loader": "^0.23.0",
"es6-promise": "^3.0.2",
"eslint": "^1.0.0",
"eslint-config-airbnb": "^1.0.0",
"eslint-plugin-react": "^3.3.1",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.9.0",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^1.6.1",
"isparta-loader": "^1.0.0",
"karma": "^0.13.8",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-coverage": "^0.5.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sinon-chai": "^1.0.0",
"karma-spec-reporter": "0.0.22",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.5",
"node-sass": "^3.3.3",
"phantomjs": "^1.9.17",
"phantomjs-polyfill": "0.0.1",
"postcss-loader": "^0.8.0",
"precommit-hook": "^3.0.0",
"react-addons-test-utils": "^0.14.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.4",
"redux-devtools": "^3.0.0",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.1",
"s3": "^4.4.0",
"sass-loader": "^3.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.11.0",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.5.0"
}
}