-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
115 lines (115 loc) · 3.5 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"build:watch": "WATCH_MODE=true lerna run --parallel build -- --watch",
"storybook": "start-storybook",
"storybook:build": "build-storybook -c .storybook",
"clean": "lerna clean",
"bootstrap": "lerna bootstrap",
"setup": "yarn clean && yarn bootstrap && yarn build",
"publish": "lerna publish",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --collectCoverage",
"test:report": "majestic"
},
"dependencies": {
"@testing-library/react": "^9.4.0",
"babel-jest": "^25.1.0",
"cross-env": "^7.0.0",
"date-fns": "2.9.0",
"faker": "^4.1.0",
"jest": "^25.1.0",
"lodash": "^4.17.15",
"react": "^16.12.0",
"react-datepicker": "2.12.1",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"react-tooltip": "^4.0.3",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.5",
"react-window-infinite-loader": "^1.0.5",
"rollup-plugin-postcss": "^2.0.6",
"styled-components": "^5.0.1",
"stylelint": "^13.1.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@storybook/addon-a11y": "^5.3.12",
"@storybook/addon-actions": "5.2.5",
"@storybook/addon-docs": "^5.3.12",
"@storybook/addon-info": "^5.3.12",
"@storybook/addon-knobs": "^5.3.12",
"@storybook/addon-links": "^5.3.12",
"@storybook/addon-viewport": "^5.3.12",
"@storybook/addons": "^5.3.12",
"@storybook/react": "^5.3.12",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-transform-rename-import": "^2.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-lerna": "^1.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"lerna": "^3.20.2",
"majestic": "^1.6.2",
"prettier": "^1.19.1",
"react-transition-group": "^4.3.0",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-delete": "^1.2.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.11.0",
"rollup-plugin-terser": "^5.2.0",
"shx": "^0.3.2",
"styled-components": "^5.0.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.0.0",
"stylelint-prettier": "^1.1.2",
"stylelint-processor-styled-components": "^1.9.0"
},
"jest": {
"moduleNameMapper": {
"^test-utils": "<rootDir>/test/test-utils.js",
"\\.(css)$": "<rootDir>/test/styleMock.js"
},
"transform": {
"^.+\\.(js|jsx|ts)$": "babel-jest"
},
"testMatch": [
"<rootDir>/packages/*/src/*/*.test.js"
],
"testPathIgnorePatterns": [
"<rootDir>/test/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/**/*.js",
"!src/assets/**"
],
"moduleDirectories": [
"node_modules"
]
},
"majestic": {
"jestScriptPath": "./node_modules/jest/bin/jest.js"
}
}