-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 827 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 827 Bytes
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
{
"name": "wave-jump",
"version": "1.0.0",
"description": "Ride the wave. Beat your friends to the finish",
"author": "Joe Karlsson <joekarlsson1@gmail.com>",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src --no-warn-ignored",
"lint:fix": "eslint src --fix --no-warn-ignored",
"format": "prettier --write \"src/**/*.{js,json,css,html}\"",
"deploy": "npm run build"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JoeKarlsson/wave-jump.git"
},
"dependencies": {
"phaser-ce": "2.10.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.56.1",
"eslint": "^9.17.0",
"playwright": "^1.56.1",
"prettier": "^3.4.2",
"vite": "^6.0.5"
}
}