-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.77 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
{
"name": "nextjs-typescript-starter",
"private": true,
"version": "1.8.0",
"description": "Next.js TypeScript Starter",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"eslint:check": "eslint . --ext ts,tsx --format friendly",
"eslint:fix": "eslint . --fix --ext ts,tsx --format friendly",
"stylelint:check": "stylelint src/styles/**/*.scss",
"stylelint:fix": "stylelint src/styles/**/*.scss --fix",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"prepare": "husky"
},
"dependencies": {
"next": "14.2.15",
"react": "18.3.1",
"react-dom": "18.3.1",
"sass": "1.79.5"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@next/bundle-analyzer": "14.2.15",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "7.13.0",
"@typescript-eslint/parser": "7.13.0",
"commitizen": "4.3.1",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.15",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-friendly": "7.0.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"postcss": "8.4.47",
"postcss-scss": "4.0.9",
"prettier": "3.3.3",
"stylelint": "16.10.0",
"stylelint-config-standard": "36.0.1",
"typescript": "5.4.5"
}
}