-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.87 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
{
"dependencies": {
"@liveauctioneers/react-window-resize-listener": "github:LIVEauctioneers/react-window-resize-listener",
"@sentry/browser": "^5.4.0",
"babel-polyfill": "^6.26.0",
"firebase": "^3.9.0",
"prop-types": "^15.7.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^3.1.0",
"react-ink": "^5.1.1",
"react-redux": "^5.1.1",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"autoprefixer": "^6.2.2",
"babel-core": "^6.26.0",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.0",
"babel-plugin-webpack-aliases": "^1.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"browser-sync": "^2.26.7",
"browser-sync-spa": "^1.0.3",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.23.1",
"del": "^2.0.2",
"es6-shim": "^0.35.5",
"eslint": "^2.11.0",
"eslint-config-xo-react": "^0.7.0",
"eslint-config-xo-space": "^0.12.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"extract-text-webpack-plugin": "^1.0.1",
"gulp": "github:gulpjs/gulp#4ed9a4a3275559c73a396eff7e1fde3824951ebb",
"gulp-filter": "^4.0.0",
"gulp-hub": "github:frankwallis/gulp-hub#d461b9c700df9010d0a8694e4af1fb96d9f38bf4",
"gulp-sass": "^2.1.1",
"gulp-util": "^3.0.7",
"html-webpack-plugin": "^2.30.1",
"jasmine": "^2.7.0",
"jest": "^20.0.4",
"json-loader": "^0.5.4",
"karma": "^0.13.14",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.8",
"karma-junit-reporter": "^0.4.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-phantomjs-shim": "^1.1.2",
"karma-webpack": "^1.7.0",
"node-sass": "^3.4.2",
"offline-plugin": "^3.4.2",
"phantomjs-prebuilt": "^2.1.15",
"postcss-loader": "^0.8.0",
"pre-push": "^0.1.1",
"preload-webpack-plugin": "^2.3.0",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.1.2",
"script-ext-html-webpack-plugin": "^2.1.3",
"style-loader": "^0.13.0",
"victory": "^0.25.6",
"webpack": "2.1.0-beta.8",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-split-by-path": "^1.0.0"
},
"scripts": {
"build": "gulp",
"prelint": "eslint --fix src/",
"lint": "eslint src/",
"webpack:profile": "webpack --config=conf/webpack.conf.js --profile --json > stats.json",
"serve": "gulp serve",
"serve:dist": "gulp serve:dist",
"test:old": "gulp test",
"test": "jest",
"test:watch": "jest --watch",
"start": "export DEVELOPMENT=true || set DEVELOPMENT=true && gulp serve",
"test:auto": "gulp test:auto"
},
"pre-push": [],
"jest": {
"collectCoverageFrom": [
"./src/**/*.js",
"!**/node_modules/**",
"!**/vendor/**"
]
}
}