forked from HashemKhalifa/webpack-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·132 lines (132 loc) · 4.14 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "minimal-webpack-react",
"version": "2.0.0",
"description": "Boilerplate for react and webpack",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --open",
"build": "cross-env NODE_ENV=production webpack",
"format": "prettier --write 'packages/**/*.js'",
"test": "jest --watchAll --coverage"
},
"lint-staged": {
"*.{js,jsx,scss,css,md}": [
"prettier --write --single-quote",
"eslint --fix",
"git add"
]
},
"jest": {
"testEnvironment": "jsdom",
"moduleDirectories": [
"src",
"node_modules"
],
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(jpg|gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
},
"transform": {
"^.+\\.(js|jsx)$": "babel-jest",
".+\\.(css|styl|less|sass|scss)$": "<rootDir>/node_modules/jest-css-modules-transform"
},
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.js",
"moduleFileExtensions": [
"css",
"scss",
"js",
"json",
"jsx"
]
},
"repository": "https://github.com/HashemKhalifa/webpack-react-boilerplate",
"author": "HashemKhalifa",
"license": "ISC",
"private": false,
"engines": {
"node": ">=8",
"npm": ">=3"
},
"dependencies": {
"@babel/plugin-transform-react-constant-elements": "7.6.3",
"@babel/plugin-transform-react-inline-elements": "7.2.0",
"babel-plugin-transform-react-pure-class-to-function": "1.0.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"core-js": "3.4.1",
"eslint-import-resolver-webpack": "^0.11.1",
"lodash": "4.17.15",
"prop-types": "15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-hot-loader": "4.12.18"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-proposal-decorators": "7.7.0",
"@babel/plugin-proposal-export-namespace-from": "7.5.2",
"@babel/plugin-proposal-function-sent": "7.7.0",
"@babel/plugin-proposal-json-strings": "7.2.0",
"@babel/plugin-proposal-numeric-separator": "7.2.0",
"@babel/plugin-proposal-throw-expressions": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-import-meta": "7.2.0",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.7.1",
"@babel/preset-react": "7.7.0",
"@babel/register": "7.7.0",
"@babel/runtime": "7.7.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"babel-plugin-lodash": "3.3.4",
"babel-preset-react-optimize": "1.0.1",
"browserslist": "4.7.3",
"clean-webpack-plugin": "3.0.0",
"connect-history-api-fallback": "1.6.0",
"cross-env": "6.0.3",
"css-loader": "3.2.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-loader": "3.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "22.21.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-watch": "6.0.1",
"file-loader": "4.2.0",
"html-webpack-plugin": "3.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"jest-css-modules-transform": "3.1.0",
"jest-enzyme": "7.1.2",
"jest-fetch-mock": "2.1.2",
"jsdom": "15.2.1",
"koa-connect": "2.0.1",
"lint-staged": "9.4.3",
"mini-css-extract-plugin": "0.8.0",
"node-sass": "4.13.0",
"npm-check-updates": "3.2.1",
"optimize-css-assets-webpack-plugin": "5.0.3",
"prettier": "^1.19.1",
"pretty-quick": "2.0.1",
"sass-loader": "8.0.0",
"script-ext-html-webpack-plugin": "2.1.4",
"style-loader": "1.0.0",
"terser-webpack-plugin": "2.2.1",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.9.0",
"webpack-merge": "4.2.2"
}
}