-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "flappybird",
"version": "0.0.1",
"description": "Another Flappy Bird game. Made with HTML5",
"main": "src/main.ts",
"author": "[email protected]",
"scripts": {
"build": "webpack",
"lint": "eslint src",
"dev": "rimraf public && webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ymoreiratiti/flappybird.git"
},
"keywords": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/ymoreiratiti/flappybird/issues"
},
"homepage": "https://github.com/ymoreiratiti/flappybird#readme",
"dependencies": {
"phaser": "^3.24.1",
"random-number-in-range": "^1.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"copy-webpack-plugin": "^6.1.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"typescript-tslint-plugin": "^0.5.5",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}