-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "fishing-game",
"version": "1.0.0",
"engines": {
"node": "14.16"
},
"description": "",
"main": "app.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack serve --mode development",
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Telos-J/fishing-game.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Telos-J/fishing-game/issues"
},
"homepage": "https://github.com/Telos-J/fishing-game#readme",
"devDependencies": {
"clean-webpack-plugin": "*",
"css-loader": "^5.2.6",
"dotenv": "^10.0.0",
"file-loader": "^6.2.0",
"gh-pages": "^3.2.3",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"sass": "^1.34.0",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"webpack": "^5.38.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"express": "^4.17.1",
"gsap": "npm:@gsap/shockingly@^3.7.1",
"lodash": "^4.17.21",
"pg": "^8.7.1",
"pixi.js": "^6.0.4",
"sanitize.css": "^12.0.1"
}
}