-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "nextjs-project",
"version": "1.0.0",
"private": "true",
"description": "Next.js starter kit for Wunder projects.",
"keywords": [],
"homepage": "https://github.com/wunderio/nextjs-project#readme",
"bugs": {
"url": "https://github.com/wunderio/nextjs-project/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wunderio/nextjs-project.git"
},
"author": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"engines": {
"node": "18"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"next": "^14.2.15",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^18.19.47",
"@types/react": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}