-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "phaser-typescript-boilerplate",
"version": "1.0.0",
"description": "phaser typescript boilerplate",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.js --mode production",
"dev": "webpack serve --config webpack.config.js --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mehmetdemiray/phaser-typescript-boilerplate.git"
},
"keywords": [
"phaser",
"typescript",
"phaser3"
],
"author": "mehmet demiray",
"license": "ISC",
"bugs": {
"url": "https://github.com/mehmetdemiray/phaser-typescript-boilerplate/issues"
},
"homepage": "https://github.com/mehmetdemiray/phaser-typescript-boilerplate#readme",
"devDependencies": {
"css-loader": "^6.6.0",
"dotenv-webpack": "^7.1.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.3",
"postcss": "^8.4.6",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.3.3",
"sass": "^1.49.7",
"sass-loader": "^12.5.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"lodash": "^4.17.21",
"phaser": "^3.55.2"
}
}