-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 4.07 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 4.07 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@peacockproject/monorepo",
"version": "8.7.0",
"private": true,
"license": "AGPL-3.0",
"scripts": {
"start": "node chunk0.js",
"clean": "premove build",
"prettier": "oxfmt --write \"**/*.{js,json,ts,md,tsx,css,mjs,html}\"",
"prettier:check": "oxfmt --check \"**/*.{js,json,ts,md,tsx,css,mjs,html}\"",
"build": "yarn webui:build && node packaging/build.mjs",
"build-plugins": "node --no-warnings packaging/buildPlugins.mjs",
"typecheck-ws": "tsc",
"typecheck": "yarn workspaces foreach -A run typecheck-ws",
"lint": "eslint .",
"rebuild-locale": "node resources/rebuildLocale.cjs",
"optimize": "terser chunk0.js -o chunk0.js -c --toplevel --timings --ecma 2021 -m --source-map \"content='chunk0.js.map'\"",
"webui": "yarn workspace @peacockproject/web-ui",
"typedefs": "yarn workspace @peacockproject/core",
"run-dev": "node packaging/devLoader.mjs",
"extract-challenge-data": "node packaging/extractChallengeData.mjs",
"extract-featured-contracts": "node packaging/extractFeaturedContracts.mjs",
"find-circular": "yarn dlx dpdm components/index.ts --exclude \"(components/types)|(node_modules)\" -T"
},
"resolutions": {
"debug": "^4.3.4",
"iconv-lite": "^0.6.3",
"function-bind": "npm:@nolyfill/function-bind@^1",
"gopd": "npm:@nolyfill/gopd@^1",
"has-property-descriptors": "npm:@nolyfill/has-property-descriptors@^1",
"has-proto": "npm:@nolyfill/has-proto@^1",
"has-symbols": "npm:@nolyfill/has-symbols@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"isarray": "npm:@nolyfill/isarray@^1",
"set-function-length": "npm:@nolyfill/set-function-length@^1",
"side-channel": "npm:@nolyfill/side-channel@^1",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1",
"jwa": "npm:jwa@1.4.2"
},
"dependencies": {
"@peacockproject/statemachine-parser": "^6.2.0",
"@yarnpkg/fslib": "^3.1.2",
"@yarnpkg/libzip": "^3.1.1",
"atomically": "^2.0.3",
"axios": "^1.8.2",
"body-parser": "^2.1.0",
"clipanion": "^4.0.0-rc.4",
"commander": "^13.1.0",
"deepmerge-ts": "^7.1.5",
"esbuild-wasm": "^0.25.0",
"express": "^5.0.1",
"jest-diff": "^29.7.0",
"js-ini": "^1.6.0",
"json5": "^2.2.3",
"jsonwebtoken": "^9.0.2",
"md5-file": "^5.0.0",
"msgpackr": "^1.11.2",
"nanoid": "^5.1.3",
"parseurl": "^1.3.3",
"picocolors": "^1.1.1",
"progress": "^2.0.3",
"prompts": "^2.4.2",
"random": "^5.3.0",
"semver": "^7.7.1",
"send": "^1.1.0",
"serve-static": "^2.1.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.4.0",
"@peacockproject/eslint-plugin": "workspace:*",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.13.10",
"@types/parseurl": "^1.3.3",
"@types/progress": "^2.0.7",
"@types/prompts": "^2.4.7",
"@types/semver": "^7",
"@types/send": "^0.17.4",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"esbuild": "^0.25.0",
"esbuild-register": "^3.6.0",
"eslint": "^9.22.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react-hooks": "^5.2.0",
"fast-glob": "^3.3.3",
"globals": "^16.0.0",
"json-keys-sort": "^2.1.0",
"ms": "^2.1.3",
"oxfmt": "^0.42.0",
"premove": "^4.0.0",
"terser": "^5.39.0",
"typescript": "5.8.2",
"winston": "3.13.0",
"winston-daily-rotate-file": "^5.0.0"
},
"engines": {
"node": "20.x || 22.x"
},
"workspaces": [
"webui",
"packaging/typedefs",
"packaging/eslint",
"tests"
],
"packageManager": "yarn@4.13.0"
}