-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.28 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
{
"name": "@yard/yard",
"version": "3.5.0",
"private": true,
"description": "Simulate running around on a yard with many people.",
"scripts": {
"clean": "npm run clean --workspaces && rimraf *.tsbuildinfo",
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint:fix --workspaces",
"prettier": "prettier --write .",
"dev": "npm run build:common && stmux -w always -e ERROR -t \"Yard (Ctrl+a, ?)\" --mouse -- [ \"npm run dev:server\" .. \"npm run dev:client\" .. \"npm run dev:common\" ]",
"dev:server": "npm run dev -w server",
"dev:client": "npm run dev -w client",
"dev:common": "npm run dev -w common",
"build": "npm run build:common && npm run build:server && npm run build:client",
"build:server": "npm run build -w server",
"build:client": "npm run build -w client",
"build:common": "npm run build -w common",
"prepare": "husky install",
"build-favicon": "cd logo && real-favicon generate faviconDescription.json faviconData.json favicon",
"check-favicon": "cd logo && real-favicon check-for-update --fail-on-update faviconData.json"
},
"repository": {
"type": "git",
"url": "[email protected]:Steditor/yard.git"
},
"keywords": [
"io-game",
"yard"
],
"author": "Stefan Neubert <[email protected]>",
"license": "MIT",
"workspaces": [
"client",
"server",
"common"
],
"dependencies": {
"ajv": "^8.12.0",
"dompurify": "^2.4.3",
"lodash-es": "^4.17.21",
"nanoid": "^4.0.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@colyseus/schema": "^1.0.45",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/dompurify": "^2.4.0",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"cli-real-favicon": "^0.0.8",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"rimraf": "3.0.2",
"stmux": "^1.8.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"lint-staged": {
"**/*.{js,ts,vue}": "eslint --cache --fix",
"**/*": "prettier --write --ignore-unknown"
}
}