-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
134 lines (134 loc) · 4.6 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
129
130
131
132
133
134
{
"name": "@8base/boost",
"version": "1.12.1",
"author": "8base",
"license": "MIT",
"main": "es/index.js",
"module": "es/index.js",
"scripts": {
"build:clean": "rm -rf es",
"build:es": "NODE_ENV=production babel src -d es --ignore '**/*test.js','**/*stories.js'",
"build:flow": "NODE_ENV=production yarn flow-copy-source src es -i '**/*test.js' -i '**/*stories.js'",
"build": "yarn build:clean && yarn build:es && yarn build:flow",
"watch": "NODE_ENV=development babel src -d es --watch --ignore '**/*test.js'",
"build-storybook": "build-storybook -c storybook -o .out",
"deploy-storybook": "storybook-to-ghpages",
"storybook": "start-storybook -p 9001 -c storybook",
"test": "jest",
"e2e": "E2E_DOCKER=true E2E_URL=http://host.docker.internal:9001 jest --config e2e/config.json --forceExit",
"e2e:update": "yarn e2e -u",
"e2e:debug": "E2E_DEBUG=true E2E_URL=http://localhost:9001 jest --config e2e/config.json --forceExit",
"e2e:ci": "E2E_DOCKER=true E2E_URL=http://dockerhost:9001 jest --config e2e/config.json --forceExit",
"eslint": "eslint --ext .jsx,.js --max-warnings=0 src/ storybook/",
"flow": "flow",
"checks": "yarn eslint && yarn flow && yarn test && yarn e2e",
"changelog-overwrite": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "yarn changelog && git add CHANGELOG.md",
"postversion": "git push --follow-tags && yarn deploy-storybook",
"commit": "git-cz"
},
"peerDependencies": {
"@emotion/core": "^10",
"@emotion/styled": "^10",
"react": "^16.8",
"react-dom": "^16.8"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"@emotion/babel-preset-css-prop": "^10.0.14",
"@storybook/addon-docs": "^5.3.0-alpha.11",
"@storybook/addons": "^5.2.2",
"@storybook/react": "5.2.1",
"@storybook/storybook-deployer": "^2.8.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.6",
"babel-plugin-flow-react-proptypes": "^23.0.0",
"babel-plugin-inline-react-svg": "^0.5.2",
"babel-plugin-jsx-control-statements": "^3.2.8",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-react-app": "^9.0.1",
"commitizen": "^3.0.7",
"conventional-changelog-cli": "^1.3.22",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^5.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.3.5",
"eslint": "4.19.1",
"eslint-config-react-app": "2.1.0",
"eslint-plugin-emotion": "^10.0.14",
"eslint-plugin-flowtype": "2.34.1",
"eslint-plugin-import": "2.10.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-react-hooks": "^1.6.1",
"flow-bin": "^0.93.0",
"flow-copy-source": "^2.0.2",
"jest": "^23.6.0",
"jest-emotion": "^10.0.14",
"jest-environment-node": "^23.4.0",
"jest-image-snapshot": "^2.7.0",
"prettier": "^1.15.3",
"puppeteer": "^1.11.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-test-renderer": "^16.8.1",
"sb": "^5.1.11"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"@emotion/core": "^10.0.16",
"@emotion/styled": "^10.0.15",
"color": "^3.0.0",
"deepmerge": "^3.0.0",
"emotion-theming": "^10.0.14",
"lodash": "^4.17.15",
"luxon": "1.7.1",
"react-datepicker": "^2.3.0",
"react-dropdown-tree-select": "1.13.0",
"react-input-mask": "^2.0.4",
"react-onclickoutside": "^6.7.1",
"react-popper": "^1.3.2",
"react-portal": "^4.1.5",
"react-select": "^3.0.4",
"recompose": "^0.27.0"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupTestFrameworkScriptFile": "./jest.setup.js",
"roots": [
"<rootDir>/src",
"<rootDir>/storybook"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.stories.js",
"!src/**/*.theme.js",
"!src/**/*.index.js"
],
"transformIgnorePatterns": [
"/node_modules/(?!babel-plugin-emotion).+(js|jsx)$"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file-mock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/style-mock.js"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}