-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.24 KB
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
{
"name": "template-nextjs",
"version": "1.0.0",
"description": "Excalibur Next.js template (TypeScript).",
"main": "src/main.ts",
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/excaliburjs/template-nextjs.git"
},
"keywords": [
"excalibur",
"excaliburjs",
"next.js",
"react",
"typescript",
"javascript",
"game-engine"
],
"author": "Erik Onarheim",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/excaliburjs/template-nextjs/issues"
},
"homepage": "https://github.com/excaliburjs/template-nextjs#readme",
"dependencies": {
"@excaliburjs/plugin-tiled": "^0.30.2",
"excalibur": "0.30.3",
"next": "^15.4.10",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.22.0",
"eslint-config-next": "^15.2.3",
"typescript": "^5"
}
}