forked from GravityPDF/gravity-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.99 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.99 KB
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
{
"name": "gravity-pdf",
"private": true,
"dependencies": {
"immutable": "^3.8.1",
"lodash.debounce": "^4.0.8",
"promise-polyfill": "^6.0.2",
"prop-types": "^15.5.8",
"react": "^15.3",
"react-dom": "^15.3",
"react-dropzone": "^3.7.0",
"react-redux": "^5.0",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-watch": "^1.1.1",
"reselect": "^3.0.0",
"superagent": "^3.5.2"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"chai": "^3.5.0",
"cross-env": "^4.0.0",
"enzyme": "^2.4.1",
"eslint": "^3.5.0",
"eslint-plugin-react": "^6.2.2",
"gulp": "~3.9.0",
"gulp-clean-css": "^3.0.3",
"gulp-rename": "~1.2.2",
"gulp-sort": "^2.0.0",
"gulp-uglify": "^2.0.0",
"gulp-watch": "^4.3.11",
"gulp-wp-pot": "^2.0.4",
"jquery": "^3.1.1",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"mocha": "^3.0.2",
"react-addons-test-utils": "^15.3.2",
"react-test-renderer": "^15.5.4",
"redux-mock-store": "^1.2.0",
"sinon": "^2.2.0",
"webpack": "^2.5.1",
"webpack-uglify-js-plugin": "^1.1.9"
},
"scripts": {
"test": "cross-env NODE_ENV=test karma start",
"test:watch": "cross-env NODE_ENV=test karma start --auto-watch --no-single-run",
"test:all": "cross-env NODE_ENV=test karma start --browsers Firefox,Chrome,IE,IE9",
"watch": "cross-env NODE_ENV=development webpack --progress --colors --watch",
"build": "cross-env NODE_ENV=production webpack"
}
}