-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "infinite-jumper",
"description": "Infinite Jumper",
"author": "Ustym Ukhman <ustym.ukhman@gmail.com>",
"homepage": "https://github.com/UstymUkhman/infinite-jumper#readme",
"main": "src/index.ts",
"version": "1.0.0",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/UstymUkhman/infinite-jumper.git"
},
"bugs": {
"url": "https://github.com/UstymUkhman/infinite-jumper/issues",
"email": "ustym.ukhman@gmail.com"
},
"keywords": [
"game",
"mario",
"jumper",
"phaser"
],
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack --env build",
"serve": "npx http-server"
},
"dependencies": {
"phaser": "^3.24.1",
"phaser3-rex-plugins": "^1.1.36"
},
"devDependencies": {
"ts-loader": "^8.0.11",
"typescript": "^4.1.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"workbox-precaching": "^6.0.2",
"workbox-routing": "^6.0.2",
"workbox-strategies": "^6.0.2",
"workbox-webpack-plugin": "^6.0.2"
},
"engines": {
"node": ">= 12.16.1",
"npm": ">= 6.13.4"
}
}