-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "next-starter",
"description": "A skeleton Next.js app to quickly get started.",
"version": "2.0.0",
"author": "Haus",
"engines": {
"node": "^20"
},
"scripts": {
"preinstall": "node scripts/check-node-version.mjs",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && npm run prettier && npm run stylelint",
"clean": "node scripts/clean.mjs",
"scaffold": "node scripts/scaffold.mjs",
"prettier": "prettier -c .",
"prettier-fix": "prettier -w .",
"stylelint": "stylelint \"**/*.css\"",
"stylelint-fix": "stylelint --fix \"**/*.css\""
},
"dependencies": {
"@madeinhaus/carousel": "^3.3.0",
"@madeinhaus/hooks": "^2.2.0",
"@madeinhaus/nextjs-page-transition": "^4.2.0",
"@madeinhaus/nextjs-theme": "^2.2.0",
"@madeinhaus/portal": "^2.2.0",
"@madeinhaus/utils": "^2.2.0",
"clsx": "^2.1.1",
"next": "15.1.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"zustand": "5.0.2"
},
"devDependencies": {
"@madeinhaus/prettier-config": "1.2.1",
"chalk": "5.3.0",
"eslint": "9.17.0",
"eslint-config-next": "15.1.1",
"figlet": "1.8.0",
"inquirer": "12.2.0",
"prettier": "3.4.2",
"semver": "^7.6.3",
"shelljs": "0.8.5",
"stylelint": "16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-css-modules": "^1.2.2"
}
}