forked from HashemKhalifa/webpack-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.8 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
{
"name": "@HashemKhalifa/webpack-react-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for react and webpack",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-serve --hot --open",
"build": "cross-env NODE_ENV=production webpack",
"format": "prettier --write 'packages/**/*.js'",
"test": "jest --watchAll --coverage",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,css,md}": [
"prettier --write --single-quote",
"eslint --fix",
"git add"
]
},
"jest": {
"automock": false,
"testEnvironment": "node",
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
},
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.js",
"moduleFileExtensions": [
"js",
"json",
"jsx"
]
},
"repository": "https://github.com/HashemKhalifa/webpack-react-boilerplate",
"author": "HashemKhalifa",
"license": "ISC",
"private": false,
"engines": {
"node": ">=8",
"npm": ">=3"
},
"dependencies": {
"lodash": "4.17.10",
"prop-types": "15.6.1",
"react": "16.4.1",
"react-dom": "16.4.1",
"react-hot-loader": "4.3.3"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.51",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.51",
"@babel/plugin-transform-runtime": "7.0.0-beta.51",
"@babel/polyfill": "7.0.0-beta.51",
"@babel/preset-env": "7.0.0-beta.51",
"@babel/preset-react": "7.0.0-beta.51",
"@babel/register": "7.0.0-beta.51",
"@babel/runtime": "7.0.0-beta.51",
"babel-core": "7.0.0-beta.3",
"babel-eslint": "8.2.3",
"babel-jest": "23.0.1",
"babel-loader": "8.0.0-beta.2",
"babel-plugin-lodash": "3.3.4",
"babel-preset-stage-2": "7.0.0-beta.3",
"browserslist": "3.2.8",
"clean-webpack-plugin": "0.1.19",
"cross-env": "5.2.0",
"css-loader": "0.28.11",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-loader": "2.0.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jest": "21.17.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.9.1",
"eslint-watch": "3.1.5",
"file-loader": "1.1.11",
"html-webpack-plugin": "3.2.0",
"husky": "0.14.3",
"identity-obj-proxy": "3.0.0",
"jest": "23.1.0",
"lint-staged": "7.2.0",
"mini-css-extract-plugin": "0.4.0",
"node-sass": "4.9.0",
"prettier": "1.13.5",
"pretty-quick": "1.6.0",
"sass-loader": "7.0.3",
"style-loader": "0.21.0",
"webpack": "4.12.0",
"webpack-cli": "3.0.8",
"webpack-merge": "4.1.3",
"webpack-serve": "1.0.4"
}
}