-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (42 loc) · 1.13 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
{
"name": "flappybird-ts",
"version": "0.1.5",
"description": "Flappy Bird game written in TypeScript",
"main": "dist/flappybird.js",
"files": [
"dist"
],
"scripts": {
"build": "webpack --mode=production --node-env=production",
"test": "echo \"Error: no test specified\" && exit 1",
"build:dev": "webpack --mode=development --watch",
"build:prod": "webpack --mode=production --node-env=production",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anag0/flappybird.git"
},
"keywords": [
"flappybird",
"flappy bird",
"ts flappy bird",
"typescript",
"game",
"flappy game"
],
"author": "Ernest Marcinko",
"license": "ISC",
"bugs": {
"url": "https://github.com/anag0/flappybird/issues"
},
"homepage": "https://ernestmarcinko.com/flappybird/",
"devDependencies": {
"ts-loader": "^9.4.3",
"typescript": "^5.0.4",
"webpack": "^5.83.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.0",
"workbox-webpack-plugin": "^6.5.4"
}
}