-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
48
49
50
{
"name": "ufo-platformer",
"version": "1.0.0",
"description": "",
"scripts": {
"*** Build & Serve - DEV": "",
"build:dev": "webpack --mode development",
"serve:dev": "webpack-dev-server --mode development",
"*** Build & Serve - PROD": "",
"build:prod": "webpack --mode production",
"serve:prod": "webpack-dev-server --mode production",
"*** Linters": "",
"lint": "run-p lint:format lint:ts",
"lint:format": "prettier --list-different \"**/*.{ts,less,js,json,html}\"",
"lint:ts": "tslint --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xRoulanDx/phaser-template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/xRoulanDx/phaser-template/issues"
},
"homepage": "https://github.com/xRoulanDx/phaser-template#readme",
"devDependencies": {
"@tinkoff/linters": "^0.3.0",
"@types/socket.io-client": "^1.4.32",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "4.6.0",
"husky": "1.3.1",
"npm-run-all": "4.1.5",
"phaser": "3.16.1",
"prettier": "1.16.4",
"rxjs": "^6.4.0",
"socket.io-client": "^2.2.0",
"ts-loader": "5.3.3",
"tslint": "5.12.1",
"typescript": "3.3.1",
"webpack": "4.29.2",
"webpack-cli": "3.2.3",
"webpack-dev-server": "3.1.14"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}