-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.77 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.77 KB
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
{
"name": "wild-next",
"version": "0.0.1",
"license": "MIT",
"engines": {
"node": ">=20.9.0",
"npm": ">=10.1.0"
},
"browserslist": {
"production": [
"defaults",
"not safari < 14.1",
"not iOS < 14.5",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": "@madebywild/prettier-config",
"eslintConfig": {
"root": true,
"extends": [
"plugin:@next/next/recommended",
"plugin:tailwindcss/recommended",
"@madebywild/eslint-config"
],
"settings": {
"tailwindcss": {
"callees": [
"cva",
"cx"
]
}
},
"overrides": [
{
"files": [
"**/*.d.ts",
"**/*.config.ts?(x)",
"./pages/**/*.ts?(x)"
],
"rules": {
"import/no-default-export": "off"
}
}
],
"rules": {
"jsx-a11y/anchor-is-valid": "off",
"@next/next/no-img-element": "off"
}
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"lint-staged": {
"*.{ts,tsx}": [
"sh -c 'tsc --project . --noEmit'"
],
"*.{json,md,css,js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --quiet --fix"
]
},
"scripts": {
"prepare": "husky install",
"clean": "rimraf .next out node_modules/.cache",
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "npm run build && next export",
"analyze": "ANALYZE=true npm run build",
"typecheck": "tsc --noEmit",
"lint": "eslint --color --cache --cache-location 'node_modules/.cache/eslint/.eslint-cache' 'pages/**/*.{js,jsx,ts,tsx}' 'features/**/*.{js,jsx,ts,tsx}'",
"format": "prettier --cache --cache-location 'node_modules/.cache/prettier/.prettier-cache' --write 'pages/**/*.{json,md,css,js,jsx,ts,tsx}' 'features/**/*.{json,md,css,js,jsx,ts,tsx}' && npm run lint -- --fix"
},
"dependencies": {
"cva": "beta",
"next": "14.0.4",
"next-seo": "6.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"remeda": "1.34.0",
"tailwind-merge": "2.2.0"
},
"devDependencies": {
"@madebywild/eslint-config": "0.5.15",
"@madebywild/prettier-config": "0.1.0",
"@next/bundle-analyzer": "14.0.4",
"@next/eslint-plugin-next": "14.0.4",
"@svgr/webpack": "8.1.0",
"@types/node": "20.10.7",
"@types/react": "18.2.47",
"autoprefixer": "10.4.16",
"eslint": "8.56.0",
"eslint-plugin-tailwindcss": "3.13.1",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"postcss": "8.4.33",
"prettier": "3.1.1",
"rimraf": "5.0.5",
"tailwindcss": "3.4.1",
"typescript": "5.3.3"
}
}