This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
128 lines (128 loc) · 4.43 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@blockchain-com/components",
"version": "6.1.1",
"description": "Blockchain.com components library",
"main": "lib/index.js",
"module": "esm/index.js",
"scripts": {
"start": "start-storybook -p 6006",
"prebuild": "npm ci",
"build": "node utils/build.js",
"prepare": "node utils/build.js",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"build-icons": "node ./utils/generateIcons",
"lint": "npm run ci:lint:js && npm run ci:lint:css",
"ci:lint:css": "stylelint './src/**/*.js'",
"ci:lint:js": "eslint 'src/*/**' --max-warnings=0",
"flow:coverage": "npx flow stop && npx flow start && flow-coverage-report --config flow-coverage-report.config.js -t badge -t html -t json -t text",
"ci:flow:check": "flow check",
"ci:flow:coverage": "npx flow stop && npx flow start && flow-coverage-report --config flow-coverage-report.config.js",
"test": "jest --notify --watch",
"test:coverage": "jest --coverage",
"ci:test": "jest --ci",
"ci:test:coverage": "jest --ci --coverage --maxWorkers=1 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"changelog": "git-changelog -t",
"preversion": "./utils/preversion.sh",
"postversion": "./utils/postversion.sh",
"preupdate:badges": "npm run flow:coverage",
"update:badges": "node utils/updateBadges.js"
},
"author": "Blockchain",
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public",
"scope": "@blockchain-com"
},
"sideEffects": false,
"dependencies": {
"@babel/runtime": "7.2.0",
"react-popper": "1.3.2",
"react-transition-group": "2.5.3"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-transform-modules-commonjs": "7.2.0",
"@babel/plugin-transform-react-display-name": "7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.2.3",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@commitlint/cli": "7.3.2",
"@commitlint/config-conventional": "7.3.1",
"@storybook/addon-actions": "4.1.18",
"@storybook/addon-backgrounds": "4.1.18",
"@storybook/addon-info": "4.1.18",
"@storybook/addon-links": "4.1.18",
"@storybook/addon-notes": "4.1.18",
"@storybook/cli": "4.1.18",
"@storybook/react": "4.1.18",
"@storybook/storybook-deployer": "2.8.1",
"@svgr/cli": "4.1.0",
"@svgr/core": "4.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-loader": "8.0.5",
"babel-plugin-add-react-displayname": "0.0.5",
"babel-plugin-styled-components": "1.10.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.23",
"camelcase": "5.0.0",
"coveralls": "3.0.2",
"decompress-zip": "0.3.2",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.7.1",
"enzyme-to-json": "3.3.5",
"eslint": "5.12.1",
"eslint-config-prettier": "3.6.0",
"eslint-config-standard": "12.0.0",
"eslint-loader": "2.1.1",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-flowtype": "3.2.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-standard": "4.0.0",
"flow-bin": "0.91.0",
"flow-copy-source": "2.0.2",
"flow-coverage-report": "0.6.1",
"husky": "1.3.1",
"jest": "23.6.0",
"jest-styled-components": "6.3.1",
"lint-staged": "8.1.0",
"polished": "2.3.3",
"prettier": "1.16.0",
"prop-types": "15.6.2",
"react": "16.7.0",
"react-dom": "16.7.0",
"redux-form": "8.1.0",
"rimraf": "2.6.3",
"standard": "12.0.1",
"styled-components": "4.1.3",
"stylelint": "9.10.1",
"stylelint-config-recommended": "2.1.0",
"stylelint-config-standard": "18.2.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-custom-processor-loader": "0.6.0",
"stylelint-processor-styled-components": "1.5.2"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"styled-components": "^4.1.3"
},
"lint-staged": {
"src/**/*.js": [
"flow focus-check",
"eslint --max-warnings=0",
"stylelint",
"jest --bail --findRelatedTests"
]
}
}