forked from pol-is/polisClientAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.23 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
{
"name": "polis-react",
"version": "0.0.1",
"repository": "github:pol-is/polisClientAdmin",
"description": "Polis React",
"engines": {
"node": "6.10.3"
},
"scripts": {
"clean": "rimraf dist",
"build:webpack": "npm run clean && NODE_ENV=production webpack --config webpack.config.js",
"build:webpack_unminified": "npm run clean && NODE_ENV=production webpack --config webpack.config.unminified.js",
"build": "npm run build:webpack",
"deploy:prod": "./deploy_TO_PRODUCTION",
"deploy:preprod": "./deployPreprod",
"start": "./x",
"lint": "eslint src",
"test": "jest"
},
"author": "Colin Megill",
"devDependencies": {
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-jest": "^17.0.0",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-es2015-computed-properties": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"es6-promise": "~1.0.0",
"eslint": "3.11.1",
"eslint-config-defaults": "^7.0.1",
"eslint-plugin-filenames": "^0.1.2",
"eslint-plugin-react": "^3.5.1",
"express": "^4.13.3",
"file-loader": "https://registry.npmjs.org/file-loader/-/file-loader-0.8.5.tgz",
"glob": "^7.1.2",
"gulp": "^3.9.0",
"gulp-gzip": "0.0.4",
"gulp-rename": "~1.0.0",
"gulp-s3": "git://github.com/mbjorkegren/gulp-s3#847e2b372204b4ceeccb0e9b567f28ff00e7fa1d",
"gulp-scp2": "^0.2.0",
"jest": "^17.0.0",
"json-loader": "^0.5.1",
"react-test-renderer": "^15.3.2",
"react-transform-catch-errors": "1.0.0",
"react-transform-hmr": "1.0.1",
"redbox-react": "1.1.1",
"rimraf": "^2.4.3",
"run-sequence": "~0.3.6",
"scp2": "^0.5.0",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
},
"dependencies": {
"boolean": "^0.1.3",
"color": "^0.7.3",
"highlight.js": "^8.9.1",
"history": "^1.12.5",
"jquery": "^2.1.4",
"lodash": "^3.10.1",
"material-ui": "^0.13.4",
"moment": "^2.10.6",
"prop-types": "^15.5.10",
"radium": "^0.15.0",
"react": "^15.5.4",
"react-codemirror": "^0.2.1",
"react-dom": "^15.5.4",
"react-fontawesome": "^0.3.3",
"react-highlight": "^0.5.1",
"react-markdown": "^1.1.0",
"react-redux": "^4.0.0",
"react-router": "^2.0.0-rc4",
"react-s-alert": "^1.3.0",
"react-sidebar": "^2.0.0",
"react-stripe-elements": "0.0.2",
"react-tap-event-plugin": "^0.2.1",
"redux": "^3.0.2",
"redux-actions": "^0.9.0",
"redux-devtools": "^2.1.5",
"redux-logger": "^2.0.4",
"redux-router": "^1.0.0-beta3",
"redux-thunk": "^1.0.0",
"request": "^2.65.0",
"tachyons-react-social-icons": "^2.8.4",
"victory-axis": "1.5.7",
"victory-bar": "2.5.0",
"victory-chart": "2.1.1",
"victory-line": "0.5.6",
"victory-pie": "0.1.4",
"whatwg-fetch": "^0.10.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": "src/**/*.js",
"coverageReporters": [
"json",
"lcov",
"text-summary"
]
}
}