-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "loading",
"version": "0.5.0",
"description": "A browser game build with phaser 3 during the Ludum Dare 50 GameJam",
"main": "index.html",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"start": "webpack --watch --progress",
"lint": "eslint ./src --ext .ts && prettier --check --ignore-path .gitignore ./src/",
"lint:fix": "eslint ./src/**/*.ts --fix && prettier --ignore-path .gitignore --write ./src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixel-fabian/loading.git"
},
"keywords": [
"phaser",
"javascript",
"typescript",
"html5-game"
],
"author": "pixel-fabian",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/pixel-fabian/loading/issues"
},
"homepage": "https://github.com/pixel-fabian/loading#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"cross-env": "^7.0.3",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-recommended": "^4.1.0",
"phaser": "^3.54.0",
"prettier": "^2.2.1",
"ts-loader": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0"
}
}