-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.57 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
107
108
109
110
111
112
113
{
"name": "react-starter-app",
"version": "1.1.0",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryelo/react-starter-app.git"
},
"author": "ryelo",
"bugs": {
"url": "https://github.com/ryelo/react-starter-app/issues"
},
"dependencies": {
"classnames": "^2.2.5",
"create-react-class": "^15.6.3",
"eslint-loader": "^2.1.0",
"react": "^16.4.2",
"redux": "^3.7.2"
},
"sassIncludes": {
"patternfly": "node_modules/patternfly/dist/sass",
"bootstrap": "node_modules/patternfly/node_modules/bootstrap-sass/assets/stylesheets",
"fontAwesome": "node_modules/patternfly/node_modules/font-awesome-sass/assets/stylesheets"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js|jsx}",
"!src/**/stories/*"
],
"setupFiles": [
"<rootDir>/config/setupTests.js"
],
"roots": [
"<rootDir>/src/"
],
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
}
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-dual-import": "^1.2.1",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.5.1",
"cross-fetch": "^2.2.2",
"css-loader": "^0.28.11",
"d3": "^5.7.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.10.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^1.1.11",
"glob": "^7.1.3",
"html-webpack-plugin": "^3.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.5.0",
"koa-connect": "^2.0.1",
"lodash-webpack-plugin": "^0.11.5",
"material-ui": "^0.20.2",
"mini-css-extract-plugin": "^0.4.2",
"moment": "^2.22.1",
"node-sass": "^4.9.3",
"normalize.css": "^8.0.0",
"npm-run-all": "^4.1.3",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^5.1.1",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.21.0",
"stylelint": "^9.5.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.3.0",
"topojson": "^3.0.2",
"webpack": "^4.17.2",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^2.1.4",
"webpack-serve": "^1.0.2",
"webpack-visualizer-plugin": "^0.1.11",
"write-file-webpack-plugin": "^4.4.0"
},
"scripts": {
"build": "webpack --config config/prod.webpack.config.js",
"test": "jest",
"lint": "npm-run-all lint:*",
"lint:js": "eslint config src",
"lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json",
"prod": "WEBPACK_SERVE=production webpack-serve --config config/dev.webpack.config.js",
"server:ctr": "node src/server/generateServerKey.js",
"start": "WEBPACK_SERVE=development webpack-serve --config config/dev.webpack.config.js",
"travis:build": "webpack --config config/test.webpack.config.js",
"travis:verify": "npm-run-all travis:build lint test",
"verify": "npm-run-all build lint test"
}
}