-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 2.85 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "devfolio",
"description": "Hi! my name is Drish, a Front-End Developer.",
"version": "2.1.0",
"author": {
"name": "Drish",
"email": "[email protected]",
"url": "https://drishxd.dev"
},
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:next": "next lint",
"lint:eslint": "eslint --fix",
"lint:style": "stylelint --allow-empty-input --fix './src/**/*.{css,scss}'",
"lint": "pnpm lint:next && pnpm lint:style",
"format": "prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"pnpm lint:eslint",
"pnpm format"
],
"./src/**/*.{css,scss,json}": [
"pnpm lint:style",
"pnpm format"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier",
"next/core-web-vitals"
],
"rules": {
"no-undef": "off",
"react-hooks/exhaustive-deps": "off",
"no-unused-vars": "off"
}
},
"stylelint": {
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-prettier-scss"
],
"rules": {
"selector-class-pattern": null
}
},
"prettier": {
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"bracketSpacing": true,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": true,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "none",
"printWidth": 100,
"importOrder": [
"^(react/(.*)$)|^(react$)|^(next/(.*)$)|^(next$)",
"<THIRD_PARTY_MODULES>",
"^@/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
},
"dependencies": {
"@gsap/react": "^2.1.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.2",
"@next/third-parties": "^14.2.2",
"@plaiceholder/next": "^3.0.0",
"@studio-freight/react-lenis": "^0.0.47",
"contentful": "^10.8.8",
"gsap": "^3.12.5",
"next": "^14.2.2",
"next-mdx-remote": "^4.4.1",
"plaiceholder": "^3.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.75.0",
"sharp": "^0.33.3",
"split-type": "^0.3.4",
"typescript": "5.4.5"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.2.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/mdx": "^2.0.13",
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"cross-env": "^7.0.3",
"encoding": "^0.1.13",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.2",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"schema-dts": "^1.1.2",
"stylelint": "^16.4.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^13.1.0"
}
}