-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.2 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AirLabsTeam/air-core.git"
},
"homepage": "https://github.com/AirLabsTeam/air-core",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"bootstrap": "yarn install --frozen-lockfile && yarn build",
"build": "lerna run build",
"build:storybook": "yarn build && build-storybook --docs",
"format": "yarn prettier --write \"**/*\"",
"lint": "yarn eslint \"**/*.{js,jsx,ts,tsx,mdx}\"",
"prepublishOnly": "yarn bootstrap",
"storybook": "start-storybook -p 6006 --docs",
"test": "tsdx test",
"test:changes": "tsdx test --changedSince=main",
"test:ci": "yarn test --ci --coverage --maxWorkers=2",
"test:watch": "tsdx test --watch",
"tsc": "sh ./scripts/tsc.sh",
"postinstall": "patch-package"
},
"dependencies": {
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"patch-package": "^6.4.2",
"postinstall-postinstall": "^2.1.0",
"tiny-invariant": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/react": "^6.3.12",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/moment": "^2.13.0",
"@types/node": "^14.14.31",
"@types/react": "17.0.41",
"@types/react-dom": "^17.0.9",
"@types/react-test-renderer": "^16.9.3",
"@types/styled-components": "^5.1.7",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"chromatic": "^5.6.3",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.8",
"hygen": "^6.0.4",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"lint-staged": "^10.5.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^16.13.1",
"react-test-renderer": "^16.13.1",
"styled-components": "^5.2.1",
"tsdx": "^0.13.3",
"typescript": "^4.3.5"
},
"resolutions": {
"@types/react": "17.0.41",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-mdx": "^1.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-testing-library": "^3.9.0",
"eslint-plugin-unicorn": "^28.0.2",
"prettier": "^2.1.2",
"ts-jest": "^26.5.3",
"typescript": "^4.3.5"
}
}