-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.39 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.39 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "webpack-play",
"version": "1.0.0",
"description": "",
"main": "home.js",
"scripts": {
"start": "webpack-dev-server --inline",
"build": "cross-env NODE_ENV=production webpack",
"build-dll": "cross-env NODE_ENV=production webpack --config webpack/dll.config.js",
"lint": "eslint \"src/**/*.js\"",
"prettier": "prettier --write --no-semi --single-quote \"src/**/*.js\"",
"flow": "flow",
"jest": "jest",
"flow-coverage": "flow-coverage-report -i \"src/**/*.js\""
},
"author": "Anton Sozonov",
"license": "MIT",
"dependencies": {
"axios": "^0.16.2",
"prettier": "^1.7.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.0.0",
"react-router-dom": "^4.2.2",
"recompose": "^0.26.0",
"styled-components": "^2.2.1"
},
"devDependencies": {
"add-asset-html-webpack-plugin": "^2.1.2",
"assets-webpack-plugin": "^3.5.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-minify-dead-code-elimination": "^0.2.0",
"babel-plugin-styled-name": "^1.0.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-inline-consecutive-adds": "^0.2.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"eslint": "^4.8.0",
"eslint-config-atomix-react": "^3.2.0",
"flow-bin": "^0.57.3",
"flow-coverage-report": "^0.3.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
"react-svg-loader": "^2.1.0",
"react-test-renderer": "^16.0.0",
"uglifyjs-webpack-plugin": "^1.0.0-beta.3",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
},
"jest": {
"roots": [
"src"
],
"modulePaths": [
"src"
],
"moduleFileExtensions": [
"js"
],
"moduleNameMapper": {
"\\.(svg)$": "<rootDir>/empty-module.js"
},
"setupFiles": [
"./src/tests-setup.js"
]
}
}