forked from InctaRepo/Inctagram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 4.77 KB
/
package.json
File metadata and controls
136 lines (136 loc) · 4.77 KB
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": "inctagram",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"turbo": "next --turbo",
"build": "next build",
"build:production": "pnpm build",
"build --profile": "next build --profile",
"ANALYZE": "cross-env ANALYZE=true pnpm build",
"start": "next start",
"dev-inspect": "cross-env NODE_OPTIONS='--inspect' next dev",
"test": "jest",
"snapshot update": "jest --updateSnapshot",
"test:watch": "jest --watch --coverage false",
"coverage": "npx jest --watchAll=false --coverage",
"playwright codegen": "npx playwright codegen http://localhost:3000/en",
"playwright test --ui": "npx playwright test --ui",
"playwright test": "npx playwright test",
"test-coverage-watch": "jest --watch --coverage",
"test-coverage": "jest --coverage",
"playwright show-report": "npx playwright show-report",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --write src",
"lint": "eslint --fix src/**/*.{tsx,ts,jsx,js} --no-error-on-unmatched-pattern && stylelint --fix src/{,*/}*.{scss,css} --allow-empty-input",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix src/**/*.{tsx,ts,jsx,js} --no-error-on-unmatched-pattern && stylelint --fix src/{,*/}*.{scss,css} --allow-empty-input",
"prettier --write src"
]
},
"dependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@floating-ui/dom": "^1.6.5",
"@hookform/resolvers": "^3.4.0",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-tabs": "^1.0.4",
"@reduxjs/toolkit": "^2.2.5",
"@svgr/webpack": "^8.1.0",
"@types/cors": "^2.8.17",
"async-mutex": "^0.5.0",
"axios": "^1.6.8",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"javascript-time-ago": "^2.5.10",
"next": "14.2.3",
"next-redux-wrapper": "^8.1.0",
"nprogress": "^0.2.0",
"react": "18.3.1",
"react-avatar-editor": "^13.0.2",
"react-datepicker": "^6.9.0",
"react-dom": "18.3.1",
"react-easy-crop": "^5.0.7",
"react-hook-form": "^7.51.4",
"react-redux": "^9.1.2",
"react-slick": "^0.30.2",
"react-toastify": "^10.0.5",
"typescript": "^5.4.5",
"use-debounce": "^10.0.0",
"zod": "^3.22.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.4.0",
"@conarti/eslint-plugin-feature-sliced": "^1.0.5",
"@hookform/devtools": "^4.3.1",
"@it-incubator/eslint-config": "^1.0.2",
"@it-incubator/prettier-config": "^0.1.2",
"@it-incubator/stylelint-config": "^2.0.0",
"@next/bundle-analyzer": "^14.2.3",
"@next/eslint-plugin-next": "^14.2.3",
"@playwright/test": "^1.44.0",
"@storybook/addon-actions": "^8.1.1",
"@storybook/addon-designs": "^8.0.1",
"@storybook/addon-essentials": "^8.1.1",
"@storybook/addon-interactions": "^8.1.1",
"@storybook/addon-links": "^8.1.1",
"@storybook/addon-onboarding": "^8.1.1",
"@storybook/blocks": "^8.1.1",
"@storybook/nextjs": "^8.1.1",
"@storybook/react": "^8.1.1",
"@storybook/test": "^8.1.1",
"@swc/core": "^1.5.7",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/nprogress": "^0.2.3",
"@types/react": "18.3.2",
"@types/react-avatar-editor": "^13.0.2",
"@types/react-datepicker": "^6.2.0",
"@types/react-dom": "^18.3.0",
"@types/react-slick": "^0.23.13",
"@welldone-software/why-did-you-render": "^8.0.1",
"cross-env": "^7.0.3",
"cross-fetch": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-testing-library": "^6.2.2",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"matchmedia-polyfill": "^0.3.2",
"next-router-mock": "^0.9.13",
"react-test-renderer": "^18.3.1",
"sass": "^1.77.1",
"storybook": "^8.1.1",
"stylelint": "^16.5.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
}
}