-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
136 lines (136 loc) · 4.25 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
135
136
{
"name": "root",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Synerise/synerise-design.git"
},
"workspaces": [
"packages/components/*",
"packages/portal",
"packages/portal-plugins/*",
"packages/docs-site/website"
],
"scripts": {
"bootstrap": "yarn npx:lerna bootstrap",
"build": "yarn npx:lerna run build",
"component:create": "node ./scripts/create-component/index.js",
"docs-build": "npx styleguidist build",
"docs-dev": "npx styleguidist server",
"docs-watch": "cd packages/docs-site/website && yarn docs-watch",
"lerna:version": "yarn npx:lerna version --conventional-commits",
"lint": "eslint . --ext .ts --ext .tsx --max-warnings 0",
"npx:lerna": "npx lerna",
"storybook": "yarn run build && cd packages/portal && yarn run storybook",
"test:ci": "npx lerna run test --stream --concurrency 1",
"types": "yarn npx:lerna run types --parallel",
"update-docs": "node ./scripts/docs/componentmd.js",
"zeplin": "cd config/zeplin && zeplin connect"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn run update-docs && git add *.md && lint-staged"
}
},
"lint-staged": {
"**/*.{css,less}": [
"prettier-eslint --write",
"git add"
],
"./package.json": [
"format-package -w",
"git add"
],
"packages/**/*.{js,ts,jsx,tsx}": [
"prettier-eslint --write",
"eslint",
"git add"
],
"packages/**/*.{md}": [
"prettier-eslint --write",
"git add"
],
"packages/components/*/package.json": [
"format-package -w",
"git add"
]
},
"dependencies": {
"antd": "4.7.0",
"invariant": "^2.2.4",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-perfect-scrollbar": "^1.5.8",
"react-styleguidist": "^11.0.5"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.7",
"@babel/helper-environment-visitor": "7.18.9",
"@babel/helper-string-parser": "7.19.4",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.8.3",
"@babel/preset-env": "7.11.0",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@commitlint/config-lerna-scopes": "8.3.4",
"@formatjs/intl-pluralrules": "1.5.2",
"@jridgewell/gen-mapping": "0.3.2",
"@testing-library/jest-dom": "5.1.1",
"@testing-library/react": "10.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^10.3.1",
"@types/enzyme": "3.10.5",
"@types/jest": "25.1.4",
"@types/styled-components": "5.0.1",
"@typescript-eslint/eslint-plugin": "2.26.0",
"@typescript-eslint/parser": "2.26.0",
"@welldone-software/why-did-you-render": "^6.0.3",
"babel-jest": "25.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-plugin-transform-rename-import": "2.3.0",
"copy-template-dir": "1.4.0",
"css-loader": "^3.4.2",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.10.0",
"eslint-config-react-app": "5.2.0",
"eslint-config-standard": "14.1.0",
"eslint-config-standard-react": "9.2.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.0",
"eslint-plugin-standard": "4.0.1",
"file-loader": "^6.0.0",
"format-package": "5.2.0",
"husky": "4.2.3",
"inquirer": "7.1.0",
"jest": "25.1.0",
"lerna": "3.20.2",
"less": "3.11.1",
"less-loader": "^5.0.0",
"less-plugin-clean-css": "1.5.1",
"less-plugin-npm-import": "2.1.0",
"lint-staged": "10.0.8",
"prettier": "2.4.1",
"prettier-eslint-cli": "5.0.0",
"react-intl": "3.12.0",
"sass": "^1.43.4",
"style-loader": "^1.1.3",
"styled-components": "5.0.1",
"ts-jest": "25.2.1",
"ts-loader": "^6.2.2",
"typescript": "3.9.9"
}
}