forked from jfilm/zombie-time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "simple-platformer",
"version": "1.0.0",
"description": "A simple platformer",
"private": true,
"scripts": {
"start": "webpack serve --open",
"build": "webpack --config webpack.config.js --mode production"
},
"contributors": [
{
"name": "Hunter Marshall",
"email": "beidah@gmail.com"
},
{
"name": "Bohdan Kornatskyi",
"email": "bohdan.kornatskyi@gmail.com"
},
{
"name": "John Asher",
"email": "johndasher01@gmail.com"
}
],
"license": "MIT",
"devDependencies": {
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"css-loader": "^5.1.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"url-loader": "^4.1.1",
"webpack-dev-server": "^3.11.2",
"copy-webpack-plugin": "^9.0.1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"extract-text-webpack-plugin": "^3.0.2",
"howler": "^2.2.3"
}
}