-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "guides",
"homepage": "https://guides.ekaterinburg.io",
"type": "module",
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx .",
"lint:fix": "eslint --ext .js,.jsx . --fix",
"prettier": "npx prettier --write .",
"prepare": "husky install",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
},
"lint-staged": {
"**/*.{js,jsx,json}": [
"prettier --write ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"ekb": "1.2.0-rc.2",
"next": "^14.2.6",
"normalize.css": "^8.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rgba-to-rgb": "^1.0.2",
"scroll-into-view-if-needed": "^3.1.0",
"typograf": "^7.4.1",
"yet-another-react-lightbox": "^3.21.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.6",
"@svgr/webpack": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3"
}
}