-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.94 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
100
101
102
103
104
105
106
107
108
109
110
{
"name": "my-react-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"format": "prettier --write '**/**.js'",
"start": "webpack-dev-server --open --config webpack.dev.js",
"test": "JEST_JUNIT_OUTPUT_DIR=./test-results/jest jest",
"test:watch": "jest --watch",
"lint": "eslint ./src",
"webpack-defaults": "webpack-defaults",
"check-size": "bundlesize",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"lint-staged": {
"src/**/*.js": [
"yarn format",
"yarn lint --fix",
"git add"
]
},
"bundlesize": [
{
"path": "./dist/main.*.js",
"maxSize": "20 kB"
},
{
"path": "./dist/vendors~main.*.js",
"maxSize": "65 kB"
}
],
"jest": {
"setupFilesAfterEnv": [
"./test/enzyme.setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testEnvironment": "node",
"reporters": [
"default",
"jest-junit"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@storybook/addon-actions": "5.1.9",
"@storybook/addon-links": "5.1.9",
"@storybook/addons": "5.1.9",
"@storybook/react": "5.1.9",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"babel-loader": "8.0.6",
"babel-plugin-transform-imports": "1.5.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"bundle-buddy": "0.2.1",
"bundlesize": "0.17.2",
"clean-webpack-plugin": "3.0.0",
"css-loader": "3.0.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.12.1",
"enzyme-to-json": "3.3.5",
"eslint": "5.6.1",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-prettier": "2.7.0",
"eslint-plugin-react": "7.11.1",
"html-webpack-plugin": "3.2.0",
"husky": "2.4.1",
"jest": "24.8.0",
"jest-junit": "6.4.0",
"lint-staged": "8.2.1",
"node-sass": "4.12.0",
"preload-webpack-plugin": "3.0.0-beta.3",
"prettier": "1.18.2",
"prettier-eslint": "9.0.0",
"react-test-renderer": "16.8.6",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"webpack": "4.35.0",
"webpack-bundle-analyzer": "3.3.2",
"webpack-cli": "3.3.5",
"webpack-dev-server": "3.7.2",
"webpack-merge": "4.2.1"
},
"dependencies": {
"baseui": "7.6.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-router-dom": "5.0.1",
"styletron-engine-atomic": "1.4.0",
"styletron-react": "5.2.0"
}
}