-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 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
55
56
57
58
59
60
61
62
{
"name": "fruit_slot_game",
"author": "Damir",
"version": "0.0.1",
"private": true,
"repository": "https://git.itbcode.com/EuroPlay/fruit_slot_game",
"source": "src/index.html",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"check:types": "tsc --noEmit",
"check:lint": "eslint .",
"check:prettier": "prettier --no-error-on-unmatched-pattern --check --write src/**/*.{js,jsx,ts,tsx,json,css,scss,md}",
"check": "run-p check:*",
"lint": "run-s check:lint check:prettier",
"build:parcel": "parcel build --no-autoinstall",
"build": "run-s check build:*",
"start:parcel": "parcel serve --port 4000 --open --no-autoinstall --public-url /",
"start": "run-s check start:parcel"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"babel-jest": "^29.5.0",
"canvas": "^2.11.2",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-plugin": "^5.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.9.1",
"prettier": "^2.8.8",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"ts-node": "^10.9.1"
},
"peerDependencies": {
"@pixi/core": "^7.2.3",
"@pixi/display": "^7.2.3",
"@pixi/events": "^7.2.3",
"@pixi/graphics": "^7.2.3",
"@pixi/sprite": "^7.2.3",
"@pixi/text": "^7.2.3",
"@pixi/text-bitmap": "^7.2.3",
"@pixi/text-html": "^7.2.3"
},
"dependencies": {
"@pixi/sound": "^5.2.1",
"@pixi/ui": "^0.8.3",
"@types/axios": "^0.14.0",
"axios": "^1.5.0",
"buffer": "^6.0.3",
"gsap": "^3.12.2",
"normalize.css": "^8.0.1",
"pixi.js": "^7.2.4",
"typescript": "5.0"
}
}