-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.94 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "flappy-bird",
"version": "1.0.0",
"engines": {
"node": "20.14.0",
"npm": "10.7.0"
},
"description": "Flappy bird Canvas game",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js",
"start": "node server.js",
"build": "webpack --config webpack.prod.js",
"init-jest": "jest --init",
"test": "jest --colors --verbose --watchAll --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PatrickInFrontEnd/flappy-bird.git"
},
"keywords": [
"Flappy",
"Bird",
"game",
"canvas"
],
"author": "Patryk Płuciennik",
"license": "ISC",
"bugs": {
"url": "https://github.com/PatrickInFrontEnd/flappy-bird/issues"
},
"homepage": "https://github.com/PatrickInFrontEnd/flappy-bird#readme",
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-html-reporter": "^3.10.2",
"mini-css-extract-plugin": "^2.9.0",
"node-sass": "^9.0.0",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"browser-sync": "^2.26.12",
"browser-sync-webpack-plugin": "^2.2.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-sslify": "^1.2.0",
"gsap": "^3.1.1"
}
}