-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.62 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
{
"name": "nextjs-application-boilerplate",
"description": "A highly structured Next.js application boilerplate designed for rapid and scalable development. Featuring an organized SCSS style architecture and a set of basic reusable components based on atomic design principles, this boilerplate serves as an ideal starting point for building sophisticated Next.js applications. Tailored for developers seeking efficiency without compromising on quality, it integrates best practices for styling, component organization, and application architecture.",
"private": false,
"version": "0.1.0",
"keywords": [
"Next.js",
"boilerplate",
"SCSS",
"atomic-design",
"react",
"reusable-components",
"application-development",
"web-development",
"structured-styling",
"scalable-architecture"
],
"author": "devMiguelCarrero",
"repository": {
"type": "git",
"url": "https://github.com/devMiguelCarrero/nextjs-application-boilerplate.git"
},
"funding": {
"type": "individual",
"url": "https://www.paypal.com/donate/?hosted_button_id=RKK3G3FWEAMLU"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"classnames": "^2.5.1",
"next": "^14.0.4-canary.17",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"postcss": "^8",
"sass": "^1.70.0",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}