-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "bun-next-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"format": "prettier --ignore-path .gitignore '**/*.{css,scss,md,html,json,js,jsx,ts,tsx}' --write",
"format:style": "stylelint '**/*.{css,scss}'"
},
"dependencies": {
"next": "14",
"react": "18",
"react-dom": "18"
},
"devDependencies": {
"@commitlint/cli": "18",
"@commitlint/config-conventional": "18",
"@types/node": "20",
"@types/react": "18",
"@types/react-dom": "18",
"@typescript-eslint/eslint-plugin": "6",
"@typescript-eslint/parser": "6",
"autoprefixer": "10",
"bun-types": "1",
"eslint": "8",
"eslint-config-next": "14",
"eslint-config-prettier": "9",
"eslint-plugin-next": "0",
"eslint-plugin-prettier": "5",
"husky": "8",
"lint-staged": "15",
"postcss": "8",
"prettier": "3",
"prettier-plugin-tailwindcss": "0",
"stylelint": "15",
"stylelint-config-prettier": "9",
"stylelint-config-standard": "34",
"stylelint-prettier": "4",
"tailwindcss": "3",
"typescript": "5"
}
}