erratic-gate/package.json

57 lines
1.7 KiB
JSON
Raw Normal View History

2019-03-06 09:25:58 +01:00
{
"name": "html5-game-template",
"version": "1.0.0",
"description": "A template for writing jam games in HTML5 + TypeScript",
"main": "./src/index.ts",
"scripts": {
2019-05-22 21:43:04 +02:00
"dev": "webpack-dev-server --open --mode development",
2019-05-27 19:29:29 +02:00
"build": "webpack --mode production",
2019-05-27 19:59:13 +02:00
"deploy": "ts-node deploy"
2019-03-06 09:25:58 +01:00
},
2019-05-27 19:29:29 +02:00
"sideEffects": [
"*.scss"
],
2019-03-06 09:25:58 +01:00
"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": {
2019-05-27 15:35:34 +02:00
"@types/file-saver": "^2.0.1",
2019-05-27 19:29:29 +02:00
"@types/gh-pages": "^2.0.0",
2019-05-27 15:35:34 +02:00
"@types/toastr": "^2.1.37",
2019-03-06 09:25:58 +01:00
"css-loader": "^2.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
2019-05-27 19:29:29 +02:00
"gh-pages": "^2.0.1",
2019-03-06 09:25:58 +01:00
"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",
2019-05-27 19:29:29 +02:00
"ts-node": "^8.2.0",
2019-03-06 09:25:58 +01:00
"typescript": "^3.3.3333",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0"
2019-05-22 21:43:04 +02:00
},
"dependencies": {
2019-05-27 15:35:34 +02:00
"@eix/input": "git+https://github.com/eix-js/input.git",
2019-05-22 21:43:04 +02:00
"@eix/utils": "git+https://github.com/eix-js/utils.git",
2019-05-27 15:35:34 +02:00
"file-saver": "^2.0.2",
2019-05-22 21:43:04 +02:00
"haunted": "^4.3.0",
"lit-html": "^1.0.0",
"lit-rx": "0.0.2",
"prelude-ts": "^0.8.2",
2019-05-27 15:35:34 +02:00
"rxjs": "^6.5.2",
"toastr": "^2.1.4"
2019-03-06 09:25:58 +01:00
}
}