-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.57 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.57 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
{
"name": "awesome-semantic-commit",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:css": "npx stylelint **/*.{css,scss}",
"lint:css-fix": "npx stylelint **/*.{css,scss} --fix",
"lint-staged": "lint-staged",
"format": "prettier --check './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"format:fix": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"test": "jest",
"test:watch": "jest --watchAll",
"prepare": "husky"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@phosphor-icons/react": "^2.1.7",
"@reduxjs/toolkit": "^2.3.0",
"@sentry/nextjs": "^8.38.0",
"@types/react-redux": "^7.1.34",
"@types/yup": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vercel/analytics": "^1.3.1",
"bootstrap": "^5.3.3",
"browser-lang": "^0.2.1",
"classnames": "^2.5.1",
"cross-spawn": "^7.0.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"formik": "^2.4.6",
"framer-motion": "^11.11.9",
"js-cookie": "^3.0.5",
"next": "^14.2.18",
"next-intl": "^3.21.1",
"posthog-js": "^1.180.0",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-loader-spinner": "^6.1.6",
"react-redux": "^9.1.2",
"ts-node": "^10.9.2",
"usehooks-ts": "^3.1.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@atolye15/stylelint-config": "^5.0.1",
"@next/bundle-analyzer": "^15.0.3",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/browser-lang": "^0.1.2",
"@types/jest": "^29.5.14",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-testing-library": "^6.4.0",
"husky": "^9.1.6",
"install": "^0.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"npm": "^10.9.0",
"sass": "^1.80.7",
"sass-loader": "^16.0.3",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5"
}
}