37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"name": "html5-game-template",
|
|
"version": "1.0.0",
|
|
"description": "A template for writing jam games in HTML5 + TypeScript",
|
|
"main": "./src/index.ts",
|
|
"scripts": {
|
|
"start": "webpack-dev-server --open --mode development",
|
|
"build": "webpack --mode production"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/neverix/html5-game-template.git"
|
|
},
|
|
"author": "neverix",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/neverix/html5-game-template/issues"
|
|
},
|
|
"homepage": "https://github.com/neverix/html5-game-template#readme",
|
|
"devDependencies": {
|
|
"css-loader": "^2.1.0",
|
|
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
|
"file-loader": "^3.0.1",
|
|
"html-loader": "^0.5.5",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"node-sass": "^4.11.0",
|
|
"sass-loader": "^7.1.0",
|
|
"source-map-loader": "^0.2.4",
|
|
"style-loader": "^0.23.1",
|
|
"ts-loader": "^5.3.3",
|
|
"typescript": "^3.3.3333",
|
|
"webpack": "^4.29.5",
|
|
"webpack-cli": "^3.2.3",
|
|
"webpack-dev-server": "^3.2.0"
|
|
}
|
|
}
|