-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "next-code-style",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier --write --ignore-unknown .",
"lint": "npx next lint --fix",
"lint-staged": "lint-staged",
"postbuild": "next-sitemap",
"prepare": "husky install",
"start": "next start",
"style-lint": "stylelint \"**/*.scss\""
},
"dependencies": {
"classnames": "2.3.1",
"interweave": "12.9.0",
"marked": "3.0.7",
"next": "11.1.2",
"next-i18next": "8.9.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@welldone-software/why-did-you-render": "6.2.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.25.1",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "7.0.2",
"interweave-ssr": "1.2.1",
"lint-staged": "11.1.2",
"next-sitemap": "1.6.168",
"next-transpile-modules": "8.0.0",
"prettier": "2.4.0",
"sass": "1.39.2",
"stylelint": "13.13.1",
"stylelint-config-sass-guidelines": "8.0.0",
"stylelint-prettier": "1.2.0"
}
}