This repository has been archived by the owner on Nov 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
92 lines (92 loc) · 2.83 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
{
"name": "react-webpack-boilerplate",
"version": "2.1.0",
"description": "Minimalistic ES6 React boilerplate",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"clean": "rimraf dist",
"production": "cross-env npm run clean && webpack --config webpack.production.config.js --progress --profile --colors",
"lint": "eslint ./app/**/**.js",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"precommit": "cross-env npm run lint && npm test",
"prepush": "cross-env npm run lint && npm test",
"webpack:dev": "webpack --colors",
"webpack:prod": "webpack --config webpack.production.config.js --colors",
"heroku-postbuild": "npm run production"
},
"author": "Kliment Petrov <[email protected]>",
"license": "MIT",
"jest": {
"setupFiles": [
"<rootDir>/config/jest/shim.js"
],
"collectCoverageFrom": [
"app/**/*.{js,jsx,ts,tsx}"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/assetsTransformer.js",
"\\.(css|less)$": "<rootDir>/config/jest/assetsTransformer.js"
},
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
],
"transform": {
"\\.js$": "babel-jest"
}
},
"dependencies": {
"cross-env": "5.2.0",
"react": "16.6.1",
"react-dom": "16.6.1",
"react-hot-loader": "4.6.3",
"react-router-dom": "4.3.0"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"@babel/preset-stage-2": "7.0.0",
"@babel/register": "7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "8.0.3",
"babel-preset-react-hmre": "1.1.1",
"copy-webpack-plugin": "4.6.0",
"css-hot-loader": "1.4.3",
"css-loader": "2.1.0",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.7.1",
"eslint": "5.0.0",
"eslint-config-airbnb": "17.1.0",
"eslint-loader": "2.1.1",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "3.0.1",
"html-webpack-plugin": "3.2.0",
"husky": "1.3.1",
"jest": "23.6.0",
"node-sass": "4.11.0",
"open-browser-webpack-plugin": "0.0.5",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.6.0",
"regenerator-runtime": "0.13.0",
"rimraf": "2.6.2",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"uglifyjs-webpack-plugin": "2.1.1",
"url-loader": "1.1.2",
"webpack": "4.27.0",
"webpack-cli": "3.1.2",
"url-loader": "1.1.2",
"webpack": "4.27.0",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.10"
}
}