-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.39 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "postapoc",
"version": "0.0.1",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite build && vite preview",
"test": "yarn test:unit && yarn test:phaser && yarn test:e2e",
"test:unit": "jest --config=jest.config.ts",
"test:phaser": "jest --config=jest.phaser.config.ts",
"test:e2e": "playwright test",
"coverage": "jest --config=jest.coverage.config.ts",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .js,.ts --fix",
"prettier": "prettier --write .",
"postinstall": "husky install",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commitlog": "conventional-changelog -i COMMITLOG.md -s -r 0 -n conventional-changelog.config.js",
"index": "ctix create -p ./tsconfig.json",
"update_comments": "node .husky/hooks/add_comments.js",
"patch": "yarn version --patch",
"minor": "yarn version --minor",
"major": "yarn version --major"
},
"dependencies": {
"@svgdotjs/svg.js": "^3.1.2",
"alea": "^1.0.1",
"bitecs": "^0.3.38",
"chalk": "^5.2.0",
"inversify": "^6.0.1",
"inversify-inject-decorators": "^3.1.0",
"loglevel": "^1.8.1",
"mitt": "^3.0.0",
"phaser": "3",
"rbush": "^3.0.1",
"reflect-metadata": "^0.1.13",
"tweakpane": "^3.1.7"
},
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/cz-commitlint": "^17.4.4",
"@playwright/test": "^1.32.1",
"@tweakpane/core": "^1.1.6",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.5",
"@types/rbush": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"canvas": "^2.11.0",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^2.2.2",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.36.0",
"esm": "^3.2.25",
"glob": "^9.3.2",
"hallmark": "^4.2.0",
"husky": "^8.0.3",
"inquirer": "^9.1.4",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jq": "^1.7.2",
"lint-staged": "^13.2.0",
"prettier": "^2.8.6",
"prettier-eslint": "^15.0.1",
"simplex-noise": "^4.0.1",
"start-server-and-test": "^2.0.0",
"ts-jest": "^29.0.5",
"typescript-eslint-parser": "^22.0.0",
"vite": "^4.2.1",
"vite-plugin-static-copy": "^0.13.1"
}
}