-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 1.99 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
{
"name": "@propeldata/ui-kit-monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"packages/**",
"app/**",
"!**/dist/**"
],
"nmHoistingLimits": "workspaces",
"scripts": {
"build": "turbo run build",
"prepare": "yarn build",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "yarn changeset version && yarn changeset publish",
"test": "turbo run test",
"postinstall": "husky install",
"commit": "cz",
"storybook": "yarn workspace ui-kit-storybook storybook",
"build-storybook": "yarn prepare && yarn workspace ui-kit-storybook build-storybook"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@changesets/cli": "^2.27.1",
"@types/css-modules": "^1.0.2",
"@types/eslint": "^7.28.0",
"@types/node": "^20.10.0",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"babel-loader": "^8.3.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.7",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"turbo": "^1.5.5",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "yarn@3.6.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"!(dist)/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"!(dist)/**/*.{css,md,json,graphql}": [
"prettier --write"
]
},
"resolutions": {
"axios": "1.6.7",
"follow-redirects": "1.15.6",
"ip": "2.0.1"
}
}