-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1016 Bytes
/
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
{
"name": "ludum-dare-50",
"version": "0.0.1",
"description": "",
"private": true,
"main": "src/index.js",
"scripts": {
"start": "webpack serve",
"start:prod": "webpack serve --mode=production",
"build": "webpack --mode=production"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/webfontloader": "^1.6.34",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.6.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"phaser": "^3.55.2",
"webfontloader": "^1.6.28"
}
}