-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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": "a-dev-adventure",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "jest test",
"dev": "parcel index.html",
"build": "parcel build index.html game.html --public-url ./",
"prepare": "husky install",
"lint-staged": "lint-staged",
"check-ts": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/core": "^1.2.177",
"@swc/jest": "^0.2.20",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^28.0.3",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^28.0.2",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
},
"dependencies": {
"@parcel/config-default": "^2.5.0",
"@parcel/transformer-raw": "^2.5.0",
"@parcel/transformer-sass": "^2.5.0",
"@parcel/transformer-typescript-tsc": "^2.5.0",
"assets": "^3.0.1",
"i18next": "^21.6.16",
"i18next-browser-languagedetector": "^6.1.4",
"matter": "^0.2.0",
"parcel": "^2.5.0",
"phaser": "^3.55.2",
"posthtml-doctype": "^1.1.1",
"posthtml-include": "^1.7.3"
},
"lint-staged": {
"**/*.{ts,tsx,css}": [
"prettier --write",
"eslint --fix"
]
}
}