-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.93 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
{
"name": "UI-test-base",
"version": "0.0.1",
"description": "Test for UI Engineering Candidates",
"main": "''",
"scripts": {
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"start": "webpack-dev-server --progress --profile --colors --mode development",
"lint": "eslint --ext js --ext jsx src || exit 0",
"dev": " webpack-dashboard -- webpack-dev-server --mode development",
"test": "export NODE_ENV=test && jest",
"pretty": "prettier --print-width 100 --single-quote all --write \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/ReactJSResources/react-webpack-babel"
},
"author": "ReactJSResources",
"license": "MIT",
"homepage": "https://github.com/ReactJSResources/react-webpack-babel#readme",
"dependencies": {
"axios": "^0.18.0",
"prop-types": "^15.7.2",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-hot-loader": "^4.0.0",
"react-redux": "^6.0.1",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"commitizen": "^3.0.7",
"css-loader": "^0.28.7",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "4.19.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "7.11.1",
"file-loader": "1.1.11",
"html-loader": "0.4.5",
"html-webpack-plugin": "3.2.0",
"jest": "^24.5.0",
"loglevel": "^1.6.0",
"prettier": "^1.14.3",
"react-test-renderer": "^16.8.5",
"source-map-loader": "0.2.3",
"style-loader": "0.21.0",
"url-loader": "1.0.1",
"webpack": "4.22.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "3.1.2",
"webpack-dashboard": "2.0.0",
"webpack-dev-server": "3.1.9"
},
"jest": {
"verbose": true,
"bail": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"moduleNameMapper": {
"\\.(jpe?g|png|gif|eot|otf|webp|svg|ttf|woff2?|mp[34]|webm|wav|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|s[ac]ss|styl)$": "<rootDir>/__mocks__/styleMock.js"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"setupFilesAfterEnv": [
"<rootDir>/.testSetupFile.js"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}