-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "pixi-starter",
"version": "0.1.0",
"description": "Simple PixiJS starter",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"linter-check": "eslint . --ext .js,.jsx,.ts,.tsx",
"linter-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"formatter-check": "prettier . --check",
"formatter-fix": "prettier . --write",
"prepare": "husky install"
},
"keywords": [
"pixi",
"pixijs",
"starter"
],
"author": "Hristo Gatsinski",
"license": "MIT",
"dependencies": {
"@pixi/layers": "^1.0.11",
"@pixi/sound": "^4.0.6",
"pixi.js": "^6.2.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"copy-webpack-plugin": "^8.1.1",
"eslint": "^7.32.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.0",
"prettier": "2.2.1",
"ts-loader": "^8.3.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^3.11.3",
"webpack-merge": "^5.8.0"
}
}