-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·115 lines (115 loc) · 3.99 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·115 lines (115 loc) · 3.99 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@shared-components/atoms",
"version": "18.9.2",
"description": "Shared Components - Atoms",
"main": "build",
"module": "build/esm/index.js",
"sideEffects": [
"*.css"
],
"author": "Shared Components",
"publishConfig": {
"registry": "{your verdaccio url}"
},
"license": "MIT",
"bundlesize": [
{
"path": "build/bundle.production.js"
}
],
"scripts": {
"build": "yarn build:development && yarn build:production && yarn build:esm",
"build:analyze": "cross-env NODE_ENV=production webpack-cli --json > build/stats.production.json && webpack-bundle-analyzer build/stats.production.json",
"build:development": "cross-env NODE_ENV=development webpack-cli",
"build:esm": "cross-env BABEL_ENV=esm babel ./src --out-dir ./build/esm --ignore \"**/*.test.js\" --ignore \"**/test.js\" --ignore \"**/__mocks__\" && ./deployAssets.sh",
"build:production": "cross-env NODE_ENV=production APP_ENV=production webpack-cli",
"build:watch": "cross-env NODE_ENV=development webpack-cli -w",
"test": "yarn test:jest && yarn test:flow && yarn test:prettier && yarn test:lint && yarn test:style",
"test:flow": "flow check",
"test:jest": "jest --runInBand --no-cache --config=jest.config.js 2>&1",
"test:lint": "eslint . --quiet",
"test:prettier": "prettier-check \"**/*.js\"",
"test:style": "stylelint **/*.style.js **/style.js",
"coverage:unit": "jest --coverage"
},
"dependencies": {
"immutable": "^3.8.2",
"loaders.css": "^0.1.2",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"numbro": "1.6.2",
"prop-types": "^15.5.7",
"react-datepicker": "~1.5.0",
"react-device-detect": "1.6.1",
"react-loaders": "^3.0.1",
"react-onclickoutside": "^6.7.1",
"react-select": "^2.4.1",
"react-swipe": "5.1.1",
"react-tooltip": "^3.9.0",
"react-truncate": "2.4.0",
"reselect": "^3.0.1"
},
"peerDependencies": {
"react": "^16.3.1",
"react-intl": "^2.4.0",
"react-redux": "^5.1.1",
"redux": "^4.0.1",
"redux-saga": "~0.16.0",
"styled-components": "^4.1.1"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.1.6",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-module-resolver": "3.0.0",
"bundlesize": "^0.17.0",
"cross-env": "^5.1.4",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.7.1",
"enzyme-to-json": "3.3.5",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-loader": "^2.0.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "0.89.0",
"flow-coverage-report": "^0.5.0",
"immutable": "^3.8.2",
"jest": "^22.2.2",
"jest-styled-components": "6.3.1",
"mini-css-extract-plugin": "^0.4.0",
"prettier": "^1.12.1",
"prettier-check": "^2.0.0",
"react-intl": "^2.4.0",
"react-redux": "^5.1.1",
"react-test-renderer": "^16.3.1",
"redux": "^4.0.1",
"redux-saga": "~0.16.0",
"reselect": "^3.0.1",
"stylelint": "^9.9.0",
"stylelint-config-prettier": "^4.0.0",
"stylelint-config-rational-order": "^0.0.2",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.1",
"url-loader": "^1.0.1",
"webpack": "~4.5.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "~2.0.14"
}
}