-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 1.77 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
{
"name": "react-bootstrap",
"version": "0.0.0",
"description": "",
"main": "webpack.config.js",
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"webpack-cli": "^3.3.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.3.13",
"bundlesize": "^0.16.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^4.19.1",
"eslint-config-fortech-react": "^1.0.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"friendly-errors-webpack-plugin": "^1.7.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-server": "^3.0.0"
},
"scripts": {
"build": "NODE_ENV=production webpack --progress",
"dev": "webpack-dev-server --progress --content-base dist --colors --inline",
"linter": "eslint src",
"test": "NODE_ENV=test jest --no-cache",
"bundlesize": "bundlesize",
"precommit": "eslint src --quiet",
"prepush": "npm run test"
},
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR"
],
"bundlesize": [
{
"path": "./dist/js/app.bundle.js",
"maxSize": "170 kB"
},
{
"path": "./dist/js/lib.bundle.js",
"maxSize": "110 kB"
}
],
"jest": {
"transform": {
"^.+\\.jsx$": "babel-jest",
"^.+\\.js$": "babel-jest"
},
"setupTestFrameworkScriptFile": "<rootDir>/test-config/test-setup.js"
},
"author": "",
"license": "ISC"
}