generated from veeso-dev/fe-gatsby-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "fe-next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:development": "NODE_ENV=development next dev",
"build": "NODE_ENV=production next build",
"postbuild": "next-sitemap",
"start": "next start -p 3000",
"lint": "next lint",
"prettier": "prettier --config .prettierrc --write src/",
"prettier:check": "prettier --config .prettierrc --check src/"
},
"browserslist": {
"production": [
"> 5%",
"not dead",
"not op_mini all"
],
"development": [
"> 5%",
"not dead",
"not op_mini all"
]
},
"dependencies": {
"@next/third-parties": "^14.2.5",
"js-cookie": "^3",
"next": "^14",
"next-sitemap": "^4.2.3",
"react": "^18",
"react-dom": "^18",
"react-feather": "^2.0",
"react-loading-skeleton": "^3.4.0",
"sharp": "^0.33.3"
},
"devDependencies": {
"@types/gtag.js": "^0.0.20",
"@types/js-cookie": "^3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/umami-browser": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "^14",
"eslint-config-prettier": "^9.1",
"eslint-plugin-promise": "^7.1.0",
"postcss": "^8",
"prettier": "^3",
"tailwindcss": "^3",
"typescript": "^5"
}
}