-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2 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
{
"name": "blazzed.space",
"version": "2.0.1",
"private": true,
"scripts": {
"dev": "next dev --turbo --port 5500 --experimental-https",
"build": "next build",
"start": "next start",
"type": "tsc --noEmit",
"stylelint": "stylelint \"**/*.css\" --fix",
"prettier": "prettier . --write",
"lint": "next lint --fix",
"debug": "cross-env NODE_OPTIONS='--inspect' next dev",
"format": "concurrently -p \"[{name}]\" -n \"typescript,prettier,eslint,stylelint\" -c \"cyan.bold,green.bold,red.bold,blue.bold\" \"npm run type\" \"npm run prettier\" \"npm run lint\" \"npm run stylelint\"",
"pre-commit": "npm run type && lint-staged",
"prepare": "husky",
"patch": "npm version patch -m \"version: %s\"",
"minor": "npm version minor -m \"version: %s\"",
"major": "npm version major -m \"version: %s\""
},
"dependencies": {
"classnames": "^2.5.1",
"lint-staged": "^12.3.2",
"next": "15.2.8",
"next-intl": "^4.0.0",
"nodemailer": "^6.10.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.55.0",
"react-turnstile": "^1.1.5",
"react-yandex-metrika": "^2.6.0",
"swiper": "^11.2.6",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@tsparticles/engine": "^3.8.1",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.8.1",
"@types/node": "^20",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"concurrently": "^9.1.2",
"eslint": "^9.23.0",
"eslint-config-next": "^15.2.2",
"husky": "^9.1.7",
"prettier": "3.5.3",
"stylelint": "^16.16.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-standard": "^37.0.0",
"typescript": "^5.5.3"
}
}