-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.34 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.34 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-types": "tsc --noemit",
"lint": "next lint && npm run check-types",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"docker:build": "docker build --tag cousvidezen .",
"docker:start": "docker run -it --rm -p 3000:3000 cousvidezen",
"docker:test": "docker run -it --rm -p 3000:3000 cousvidezen /bin/sh",
"prepare": "husky"
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"async-mutex": "^0.5.0",
"axios": "^1.6.2",
"clsx": "^2.0.0",
"date-fns": "^3.3.1",
"error-ex": "^1.3.2",
"i18n-iso-countries": "^7.13.0",
"next": "^14.2.25",
"next-auth": "^5.0.0-beta.19",
"next-redux-wrapper": "^8.1.0",
"react": "^18",
"react-dom": "^18",
"react-easy-crop": "^5.2.0",
"react-hook-form": "^7.53.2",
"react-number-format": "^5.3.4",
"react-redux": "^9.0.4",
"react-select": "^5.8.0",
"redux-persist": "^6.0.0",
"sass": "^1.69.5",
"sharp": "^0.33.5"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@eslint/eslintrc": "^3.3.1",
"@storybook/addon-essentials": "^8.4.6",
"@storybook/addon-interactions": "^8.4.6",
"@storybook/addon-onboarding": "^8.4.6",
"@storybook/blocks": "^8.4.6",
"@storybook/nextjs": "^8.4.6",
"@storybook/react": "^8.4.6",
"@storybook/test": "^8.4.6",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^18.3.12",
"@types/react-dom": "^18",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^8",
"eslint-config-next": "^14.2.25",
"eslint-plugin-storybook": "^0.11.1",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.5.0",
"msw": "^2.6.4",
"msw-storybook-addon": "^2.0.4",
"prettier": "^3.2.5",
"storybook": "^8.4.6",
"typescript": "^5",
"vitest": "^2.1.5"
},
"msw": {
"workerDirectory": [
"public"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint"
}
}