-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 3.8 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rm -rf node_modules && rm -rf packages/**/node_modules/ && rm -rf packages/**/dist",
"pre-build": "tsc -b packages/stylelint-config packages/ts-config packages/user-creator packages/utils packages/commitizen-config packages/utils",
"build": "yarn --cwd packages/webcomponents && yarn --cwd packages/webcomponents build && lerna run build",
"ci:build": "lerna run ci:build",
"lint": "eslint scripts/ packages --fix --ext js,jsx,ts,tsx",
"style": "prettier --config .prettierrc --write packages/**/*.{scss,tsx,ts,json}",
"test": "lerna run test",
"test:web": "yarn --cwd packages/webcomponents test --watchAll -u",
"docs": "typedoc",
"commit": "git-cz",
"cz": "git-cz",
"up": "yarn upgrade-interactive --latest",
"scripts:runner": "ts-node -P tsconfig.eslint.json",
"scripts:validateNoOnly": "yarn scripts:runner scripts/validateNoOnly",
"scripts:yarnAfterPull": "yarn scripts:runner scripts/yarnAfterPull"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/load": "^16.0.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.5",
"@mui/lab": "^5.0.0-alpha.64",
"@mui/material": "^5.2.8",
"@types/enzyme": "3.10.11",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.orderby": "^4.6.6",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"enzyme-to-json": "^3.6.0",
"eslint": "^8.6.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"execa": "^6.0.0",
"fs-nextra": "^0.5.1",
"fuse.js": "^6.5.3",
"glob": "^7.2.0",
"jest": "^27.4.7",
"jest-circus": "^27.4.6",
"lerna": "^4.0.0",
"lint-staged": "^12.1.7",
"lodash.debounce": "^4.0.8",
"lodash.orderby": "^4.6.0",
"moment": "^2.29.0",
"npm-run-all": "^4.1.5",
"postcss": "8",
"prettier": "^2.5.1",
"prop-types": "15.8.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.3.0",
"rimraf": "^3.0.0",
"sass": "^1.48.0",
"serve": "^13.0.2",
"stylelint": "^14.2.0",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typedoc-plugin-lerna-packages": "^0.3.0",
"typedoc-plugin-nojekyll": "^1.0.1",
"typescript": "^4.5.4",
"utility-types": "^3.10.0"
},
"config": {
"commitizen": {
"path": "./node_modules/@rws-air/commitizen-config"
}
},
"commitlint": {
"extends": [
"@rws-air"
]
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix --ext js,ts,tsx",
"prettier --write"
]
},
"resolutions": {
"acorn": "^8.7.0",
"kind-of": "^6.0.3"
},
"dependencies": {
"@mui/styles": "^5.2.3",
"@rws-air/utils": "^5.2.3",
"glob-parent": "^6.0.2",
"is-svg": "^4.3.2"
}
}