-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
104 lines (104 loc) · 3.36 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
{
"author": "Findify <[email protected]>",
"config": {
"commitizen": {
"path": "@findify/lerna-conventional-changelog"
}
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.12.13",
"@findify/babel-plugin-css-modules-transform": "^2.0.3",
"@findify/lerna-conventional-changelog": "^0.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@types/jest": "^26.0.20",
"@types/jsonp": "^0.2.0",
"@types/nock": "^10.0.3",
"@types/node": "^14.14.34",
"@types/qs": "^6.9.6",
"@types/react": "^17.0.3",
"@types/react-virtualized": "^9.21.11",
"@types/recompose": "^0.30.7",
"@types/tapable": "1.0.6",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"commitizen": "^4.2.3",
"compression-webpack-plugin": "^7.1.2",
"core-js": "^3.9.1",
"del-cli": "^3.0.1",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.20.0",
"git-revision-webpack-plugin": "^3.0.6",
"husky": "^5.1.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jscodeshift": "^0.11.0",
"lerna": "^4.0.0",
"lerna-changelog": "^1.0.1",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^1.3.7",
"npm-check-updates": "^11.1.4",
"npm-run-all": "^4.1.5",
"perfectionist": "^2.4.0",
"postcss": "^7.0.36",
"postcss-discard-empty": "^2.1.0",
"postcss-merge-rules": "^2.1.2",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-docgen": "^5.3.1",
"react-docgen-typescript": "^1.21.0",
"react-dom": "^17.0.1",
"stylelint": "^13.10.0",
"stylelint-config-standard": "^20.0.0",
"terser-webpack-plugin": "^5.1.1",
"ts-jest": "^26.5.1",
"typedoc": "^0.20.25",
"typescript": "4.1.5",
"typescript-plugin-css-modules": "^3.2.0",
"webpack": "^5.22.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"yarn": "^1.22.10"
},
"private": true,
"resolutions": {
"hoist-non-react-statics": "3.3.0"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build:dist": "lerna run build:dist --since",
"build:lib": "lerna run build:lib",
"build:tdd": "run-s --continue-on-error build:test build:test:watch",
"build:test": "lerna run build:test",
"build:test:watch": "lerna run build:test:watch --parallel",
"c": "git cz",
"clean": "lerna run clean --parallel",
"docs": "lerna run docs --parallel",
"lint": "lerna run --concurrency 1 --stream precommit --since HEAD --exclude-dependents",
"node:inspector": "node-inspector",
"postinstall": "yarn build:lib",
"precommit": "run-s lint test",
"rebuild": "run-s clean build",
"release": "lerna release --yes",
"test": "lerna run test --parallel",
"test:watch": "lerna run test:watch --parallel"
},
"workspaces": [
"packages/*",
"config"
],
"dependencies": {
"babel-plugin-transform-export-default-name": "^2.1.0",
"dts-bundle": "^0.7.3",
"regenerator-runtime": "^0.13.7"
}
}