-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.72 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
{
"name": "my-app",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:eslint": "next lint",
"lint:eslint-fix": "npm run lint:eslint -- --fix",
"lint:stylelint": "stylelint \"src/**/*.{css,scss}\" --ignore-path .gitignore",
"lint:stylelint-fix": "npm run lint:stylelint -- --fix",
"lint:prettier": "prettier --check --ignore-unknown .",
"lint:prettier-fix": "prettier --write --ignore-unknown .",
"lint": "npm run lint:eslint && npm run lint:stylelint && npm run lint:prettier",
"lint:fix": "npm run lint:stylelint-fix && npm run lint:eslint-fix && npm run lint:prettier-fix"
},
"dependencies": {
"@types/react-dom": "^18.3.0",
"axios": "^1.6.8",
"clsx": "^2.1.1",
"lodash": "^4.17.21",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/lodash": "^4.17.1",
"@types/node": "18.16.0",
"@types/react": "^18.3.2",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^14.2.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.4.38",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"sass": "^1.77.2",
"stylelint": "^16.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"tailwindcss": "^3.4.3",
"typescript": "5.0.4",
"typescript-plugin-css-modules": "^5.0.1"
}
}