-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·98 lines (98 loc) · 3.02 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
{
"name": "react-webpack-boilerplate",
"version": "2.1.0",
"description": "Minimalistic ES6 React boilerplate",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"clean": "rimraf dist",
"production": "cross-env npm run clean && webpack --config webpack.production.config.js --progress --profile --colors",
"lint": "eslint ./src/**/**.js",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"precommit": "cross-env npm run lint && npm test",
"prepush": "cross-env npm run lint && npm test"
},
"author": "Kliment Petrov <[email protected]>",
"license": "MIT",
"jest": {
"setupFiles": [
"<rootDir>/config/jest/shim.js"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/assetsTransformer.js",
"\\.(scss|css|less)$": "<rootDir>/config/jest/assetsTransformer.js"
},
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
],
"transform": {
"\\.js$": "babel-jest"
}
},
"dependencies": {
"camelcase": "^5.0.0",
"cross-env": "5.2.0",
"es6-promise": "^4.2.4",
"isomorphic-fetch": "^2.2.1",
"localforage": "^1.7.2",
"lodash.debounce": "^4.0.8",
"mobx": "^5.0.3",
"mobx-react": "^5.2.3",
"moment": "^2.23.0",
"prop-types": "^15.6.2",
"pubsub-js": "^1.6.0",
"react": "16.4.1",
"react-dom": "16.4.1",
"react-hot-loader": "4.3.2",
"react-router": "^4.3.1",
"react-router-dom": "4.3.0",
"react-toastify": "^4.1.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.3",
"babel-jest": "^23.2.0",
"babel-loader": "7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-react-boilerplate": "1.1.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-2": "6.24.1",
"copy-webpack-plugin": "4.5.1",
"css-hot-loader": "1.3.9",
"css-loader": "0.28.11",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.19.0",
"eslint-config-airbnb": "16.1.0",
"eslint-loader": "2.0.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.9.0",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.10",
"html-webpack-plugin": "3.2.0",
"husky": "0.15.0-rc.2",
"jest": "22.1.0",
"node-sass": "4.9.0",
"open-browser-webpack-plugin": "0.0.5",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.4.1",
"rimraf": "2.6.2",
"sass-loader": "6.0.7",
"style-loader": "0.21.0",
"url-loader": "1.0.0",
"webpack": "3.11.0",
"webpack-dev-server": "2.9.6"
}
}