-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
54 lines (54 loc) · 1.46 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
51
52
53
54
{
"name": "pixi-webpack-ts",
"version": "6.0.4",
"license": "CC-BY-NC-4.0",
"author": "Loïc TRUCHOT <[email protected]>",
"description": "A pre installed environnement to work with pixi.js with webpack & typescript",
"engines": {
"node": "^14.0.0",
"npm": "^7.0.0"
},
"main": "./src/app.ts",
"scripts": {
"npm-reset": "rm -rf node_modules && npm cache verify && npm i",
"git-reset": "git reset HEAD --hard && git clean -fd && git fetch --all --tags --prune && git pull",
"start": "webpack serve",
"build": "webpack"
},
"keywords": [
"pixijs",
"playground",
"basic",
"webpack",
"typescript",
"seed"
],
"dependencies": {
"pixi.js": "6.0.4"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.2",
"@types/node": "15.6.0",
"@types/pixi.js": "5.0.0",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "9.0.0",
"css-loader": "5.2.5",
"eslint": "7.27.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.23.3",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.3.1",
"sass": "1.34.0",
"sass-loader": "11.1.1",
"style-loader": "2.0.0",
"ts-loader": "9.2.2",
"typescript": "4.2.4",
"webpack": "5.37.1",
"webpack-cli": "4.7.0",
"webpack-dev-server": "3.11.2"
}
}