-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 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
46
{
"name": "FlappySonic",
"version": "0.0.12",
"description": "Flappy Bird like game featuring Sonic The Hedgehog",
"author": "José Ignacio Amelivia Santiago <jignacio.amelivia@gmail.com> (https://namelivia.com)",
"scripts": {
"build": "webpack --config webpack.config.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"flappysonic-client": "^0.0.8",
"socket.io-client": "^4.8.1",
"express": "^4.21.2",
"mongoose": "^8.9.5",
"pug": "^3.0.3",
"socket.io": "^4.8.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.26.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^10.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^4.2.1",
"file-loader": "^6.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^3.4.2",
"sass": "^1.83.4",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}