forked from dimaland1/Streali
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.41 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
{
"name": "streali",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve app",
"build": "nx build",
"test": "nx test",
"storybook": "nx run shared-ui:storybook",
"build-storybook": "nx run shared-ui:build-storybook",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.1.0",
"@headlessui/react": "^1.6.6",
"@monaco-editor/react": "^4.4.5",
"@nrwl/next": "14.4.3",
"@radix-ui/react-accordion": "^1.0.0",
"@radix-ui/react-dialog": "^1.0.0",
"@radix-ui/react-popover": "^1.0.0",
"@radix-ui/react-portal": "^1.0.0",
"@radix-ui/react-slider": "^1.0.0",
"@radix-ui/react-tabs": "^1.0.0",
"@radix-ui/react-tooltip": "^1.0.0",
"@tanstack/react-query": "^4.1.3",
"@tanstack/react-query-devtools": "^4.2.3",
"@uiw/react-color": "^1.1.0",
"axios": "^0.27.2",
"chance": "^1.1.8",
"clsx": "^1.2.1",
"core-js": "^3.6.5",
"interactjs": "^1.10.17",
"lottie-react": "^2.3.1",
"next": "^12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.5",
"react-dropzone": "^14.2.2",
"react-hook-form": "^7.34.1",
"react-hot-toast": "^2.3.0",
"react-router-dom": "6",
"react-select": "^5.4.0",
"regenerator-runtime": "0.13.7",
"remixicon": "^2.5.0",
"simple-tmi-emotes": "^1.1.1",
"tmi.js": "^1.8.5",
"tslib": "^2.3.0",
"webfontloader": "^1.6.28",
"zod": "^3.18.0"
},
"devDependencies": {
"@babel/core": "7.12.13",
"@babel/preset-typescript": "7.12.13",
"@nrwl/cli": "14.4.3",
"@nrwl/cypress": "14.4.3",
"@nrwl/eslint-plugin-nx": "14.4.3",
"@nrwl/jest": "14.4.3",
"@nrwl/linter": "14.4.3",
"@nrwl/nx-cloud": "latest",
"@nrwl/react": "14.4.3",
"@nrwl/storybook": "^14.4.3",
"@nrwl/web": "14.4.3",
"@nrwl/workspace": "14.4.3",
"@storybook/addon-essentials": "~6.5.9",
"@storybook/builder-webpack5": "~6.5.9",
"@storybook/core-server": "~6.5.9",
"@storybook/manager-webpack5": "~6.5.9",
"@storybook/react": "~6.5.9",
"@svgr/webpack": "^5.4.0",
"@testing-library/react": "13.3.0",
"@types/chance": "^1.1.3",
"@types/jest": "27.4.1",
"@types/node": "16.11.7",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/react-router-dom": "5.3.3",
"@types/tmi.js": "^1.8.1",
"@types/webfontloader": "^1.6.34",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"autoprefixer": "^10.4.7",
"babel-jest": "27.5.1",
"babel-loader": "8.1.0",
"cypress": "^9.1.0",
"eslint": "~8.15.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.1",
"jest": "27.5.1",
"nx": "14.4.3",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"react-test-renderer": "18.2.0",
"sass": "1.52.3",
"storybook-addon-next": "^1.6.6",
"storybook-addon-swc": "^1.1.7",
"tailwindcss": "^3.1.6",
"ts-jest": "27.1.4",
"ts-node": "~10.8.0",
"typescript": "~4.7.2",
"url-loader": "^3.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}