-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 834 Bytes
/
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
{
"name": "your-project-name",
"author": {
"name": "Your Full Name",
"email": "[email protected]",
"url": "https://your-site.com"
},
"version": "your-project-version",
"license": "choose-your-license",
"keywords": [
"some",
"project",
"features"
],
"description": "Your project description.",
"repository": "your-repository-address",
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "12.1.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "^1.45.0"
},
"devDependencies": {
"@types/node": "16.11.13",
"@types/react": "17.0.37",
"eslint": "8.4.1",
"eslint-config-next": "12.0.7",
"typescript": "4.5.4"
}
}