-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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": "1.0.0",
"description": "This project is a clone of the popular mobile game \"flappy bird\" to be played in the browser.",
"main": "index.js",
"sideEffects": [
"*.css"
],
"scripts": {
"production": "webpack --mode production --config webpack.config.js",
"build": "webpack --mode development --config webpack.config.js",
"start": "webpack serve --config webpack.config.js --mode development",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabekole/FlappyBird.git"
},
"author": "gabekole",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabekole/FlappyBird/issues"
},
"homepage": "https://github.com/gabekole/FlappyBird#readme",
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.2",
"file-loader": "^6.2.0",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"pixi.js": "^7.0.4"
}
}