-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
51
52
53
54
55
56
57
58
{
"name": "personext",
"version": "0.1.0",
"private": true,
"scripts": {
"prebuild": "node prebuild/blog-data-to-json.js",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"svgr": "svgr -d components/Icons assets/icons"
},
"dependencies": {
"autoprefixer": "10.4.16",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"fs": "^0.0.1-security",
"i18next": "^23.6.0",
"js-yaml": "^4.1.0",
"markdown-it": "^14.0.0",
"next": "14.0.3",
"next-auth": "^4.24.5",
"next-i18next": "15.0.0",
"npm": "^10.2.5",
"path": "^0.12.7",
"postcss": "8.4.31",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^13.3.1",
"react-paginate": "^8.2.0"
},
"devDependencies": {
"@commitlint/cli": "18.4.2",
"@commitlint/config-conventional": "18.4.2",
"@svgr/cli": "^8.1.0",
"eslint": "^8.41.0",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "9.0.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"prettier": "3.1.0",
"prettier-plugin-tailwindcss": "0.5.7",
"tailwindcss": "^3.3.5",
"xml2js": "^0.6.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"pre-push": "yarn run test",
"post-merge": "yarn install",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}