-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.43 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.43 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "Just a React.js Boilerplate",
"scripts": {
"format": "prettier --write \"*(src|config|.storybook)/**/*.{js,jsx,css,json,html}\"",
"format:check": "prettier --list-different \"*(src|config|.storybook)/**/*.{js,jsx,css,json,html}\"",
"lint:js": "eslint \"*(src|config|.storybook)/**/*.{js,jsx}\"",
"lint:js-fix": "eslint --fix \"*(src|config|.storybook)/**/*.{js,jsx}\"",
"lint:css": "stylelint \"src/**/*.{js,jsx}\"",
"lint:css-fix": "stylelint --fix \"src/**/*.{js,jsx}\"",
"test": "jest",
"test:coverage": "jest --silent --coverage ",
"test:watch": "jest --silent --watchAll",
"test:update": "jest --silent -u",
"dev": "webpack-dev-server --config config/webpack/webpack.dev.js --open --color --progress --hide-modules --display-optimization-bailout --hot --inline",
"prod": "NODE_ENV=production rimraf dist && webpack --config config/webpack/webpack.prod.js -p"
},
"author": "Oliver Farrell",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@emotion/core": "^10.0.7",
"@emotion/styled": "^10.0.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-emotion": "^10.0.6",
"circular-dependency-plugin": "^5.0.2",
"copy-webpack-plugin": "^5.0.0",
"core-js": "^2.6.5",
"css-loader": "^2.1.0",
"emotion": "^10.0.7",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"image-webpack-loader": "^4.6.0",
"jest": "^24.1.0",
"jest-emotion": "^10.0.7",
"normalize.css": "^8.0.1",
"offline-plugin": "^5.0.6",
"prettier": "^1.16.4",
"react-test-renderer": "^16.8.2",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.2",
"svg-url-loader": "^2.3.2",
"terser-webpack-plugin": "^1.2.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-hot-middleware": "^2.24.3"
},
"dependencies": {
"@reach/router": "^1.2.1",
"dotenv": "^6.2.0",
"prop-types": "^15.7.2",
"react": "^16.8.2",
"react-app-polyfill": "^0.2.1",
"react-dom": "^16.8.2",
"react-icons": "^3.4.0",
"react-loadable": "^5.5.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"whatwg-fetch": "^3.0.0"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/config/jest/tests.js"
],
"moduleNameMapper": {
"^components(.*)$": "<rootDir>/src/components$1",
"^containers(.*)$": "<rootDir>/src/containers$1",
"^utils(.*)$": "<rootDir>/src/utils$1",
"^assets(.*)$": "<rootDir>/src/assets$1"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint:js && npm run lint:css"
}
}
}