-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1 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
{
"name": "echo-jumper",
"description": "Game built for the GitHub Game Off 2023",
"version": "1.0.0",
"author": "Chris Bot <chrisadambot@gmail.com>",
"scripts": {
"eslint": "eslint src",
"prettier": "prettier ./src",
"fmt": "npm run prettier -- --write",
"lint": "npm run eslint && npm run prettier -- --check",
"typecheck": "tsc --noEmit",
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"license": "MIT",
"dependencies": {
"phaser": "^3.70.0",
"phaser3-rex-plugins": "^1.60.7"
},
"devDependencies": {
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-canonical": "^4.15.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-import-alias": "^1.2.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-tsconfig-paths": "^4.2.1"
}
}