-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.04 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
{
"name": "wecansavedemocracy",
"version": "1.0.0",
"description": "A simple mobile and tablet-friendly web app to help get citizens in the habit of taking peaceful political action towards progressive causes.",
"main": "index.js",
"repository": "git@github.com:dorono/wecansavedemocracy.git",
"scripts": {
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"test": "nyc --reporter=html mocha --reporter spec tools/test_setup.js \"src/**/*.test.js\"",
"test:watch": "npm run test -- --watch",
"test:report": "nyc report",
"lint": "esw src",
"lint:watch": "npm run lint -- --watch"
},
"authors": [
"Doron Orenstein",
"Mike Hughes",
"Joshua Travis",
"jsissom"
],
"license": "GPL-3.0",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"enzyme": "^2.7.1",
"eslint": "^2.13.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-react": "^5.2.2",
"eslint-watch": "^2.1.14",
"jquery": "^2.2.1",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"nyc": "^10.1.2",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"axios": "^0.15.3",
"babel-preset-stage-1": "^6.1.18",
"css-loader": "^0.26.1",
"file-loader": "^0.10.0",
"json-loader": "^0.5.4",
"lodash": "^4.17.2",
"material-design-icons": "^3.0.1",
"material-ui": "^0.16.7",
"moment": "^2.17.1",
"moment-timezone": "^0.5.11",
"react-dom": "^15.4.1",
"react-moment": "^0.1.2",
"react-redux": "^4.0.0",
"react-router": "^2.0.0-rc5",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.0.4",
"redux-form": "^6.4.2",
"redux-form-material-ui": "^4.1.2",
"redux-promise": "^0.5.3",
"striptags": "^2.2.1",
"style-loader": "^0.13.1"
}
}