forked from thoughtindustries/helium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.48 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
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/near-operation-file-preset": "^2.2.9",
"@graphql-codegen/typescript-operations": "^2.3.5",
"@graphql-codegen/typescript-react-apollo": "^3.2.11",
"@storybook/addon-actions": "^7.0.21",
"@storybook/addon-controls": "^7.0.21",
"@storybook/addon-links": "^7.0.21",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-storysource": "^7.0.21",
"@storybook/addons": "^7.0.21",
"@storybook/react": "^7.0.21",
"@storybook/react-vite": "^7.0.21",
"@storybook/theming": "^7.0.21",
"@tailwindcss/line-clamp": "^0.3.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.4.0",
"@thoughtindustries/graphql-codegen-plugin": "^1.0.0",
"@thoughtindustries/storybook-addon-apollo-client": "^1.0.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"autoprefixer": "^10.3.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^7.0.4",
"i18next": "^21.10.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lerna": "^4.0.0",
"lint-staged": "^12.0.2",
"postcss": "^8.3.8",
"prettier": "^2.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.6",
"storybook": "^7.0.21",
"storybook-addon-cookie": "^3.0.0",
"storybook-react-i18next": "^1.1.2",
"tailwindcss": "^2.2.16",
"ts-jest": "^28.0.5",
"typescript": "^4.4.3"
},
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-storybook-ci": "storybook build -o docs-build",
"test": "jest",
"prepare": "husky install",
"lint": "eslint --ext .ts,.tsx packages --fix",
"format": "prettier --write --ignore-unknown ."
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write --ignore-unknown"
],
"*.{ts,tsx}": [
"eslint --fix"
]
},
"workspaces": [
"packages/*",
"tooling/*"
],
"volta": {
"node": "16.18.1",
"npm": "8.19.2"
},
"dependencies": {
"@storybook/addon-toolbars": "^7.0.21"
}
}