forked from iamaliybi/flappy-bird
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.4 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
{
"name": "zappy-bird",
"version": "1.0.0",
"description": "Zappy Bird is an arcade-style game in which the player controls the bird Faby, which moves persistently to the right. The player is tasked with navigating Faby through pairs of pipes that have equally sized gaps placed at random heights.",
"main": "src/index.ts",
"scripts": {
"start": "webpack serve --open --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prod.js"
},
"keywords": [
"webpack",
"zappy-bird"
],
"author": "Roland",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.11",
"@types/seedrandom": "^3.0.5",
"@webbtc/webln-types": "^2.0.1",
"babel-loader": "^8.2.3",
"css-loader": "^6.6.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.3",
"sass": "^1.49.7",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"svg-url-loader": "^7.1.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@getalby/lightning-tools": "^4.0.2",
"@getalby/sdk": "^2.4.0",
"copy-webpack-plugin": "^11.0.0",
"seedrandom": "^3.0.5"
}
}