-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.62 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "nextjs_frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix --ext .js,.ts,.tsx ./ --ignore-path .gitignore",
"check-types": "tsc --project tsconfig.json --pretty --noEmit",
"validate": "npm-run-all --parallel check-types && lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@fontsource/kanit": "^4.5.10",
"@fontsource/lato": "^4.5.10",
"@fontsource/noto-sans-lydian": "^4.5.8",
"axios": "^1.3.2",
"bootstrap": "^5.2.3",
"dateformat": "^5.0.3",
"dotenv": "^16.0.3",
"include-media": "^2.0.0",
"markdown-it": "^13.0.1",
"next": "^13.1.6",
"next-seo": "^5.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hydration-provider": "^1.0.2",
"react-icons": "^4.7.1",
"react-spinners": "^0.13.8",
"rfs": "^9.0.6",
"sass": "^1.58.0",
"sharp": "^0.31.3",
"swr": "^2.0.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.1.6",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@tsconfig/next": "^1.0.5",
"@types/dateformat": "^5.0.0",
"@types/jest": "^29.4.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "18.13.0",
"@types/react": "18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.18.0",
"eslint-plugin-testing-library": "^5.10.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.1.1",
"msw": "^1.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typescript": "4.9.5"
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"lint-staged": {
"*.+(ts|tsx)": [
"npm run lint"
]
}
}