-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.24 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
{
"name": "scoutradioz",
"private": true,
"version": "1.0.0",
"config": {
"backupsS3BucketName": "scoutradioz-backups"
},
"scripts": {
"lint": "./node_modules/.bin/eslint primary/app.js",
"update": "yarn && cd scoutradioz-utilities && yarn update && yarn build && cd ../scoutradioz-helpers && yarn update && yarn build && cd ../scoutradioz-http-errors && yarn build && cd ../primary && yarn update && cd ../voyager && yarn update",
"setup": "yarn && yarn setup-packages && yarn setup-express-functions && cd voyager && yarn --ignore-platform --ignore-engines",
"setup-express-functions": "cd primary && yarn && cd public-src && yarn && cd ../../upload && yarn && cd ../webhook && yarn",
"setup-packages": "cd scoutradioz-utilities && yarn && yarn build && cd ../scoutradioz-http-errors && yarn build && cd ../scoutradioz-helpers && yarn && yarn build",
"start": "yarn dev",
"dev": "bun scripts/dev.js"
},
"devDependencies": {
"@material/fab": "^14.0.0",
"@types/archiver": "^5.3.1",
"@types/aws-serverless-express": "^3.3.5",
"@types/bcryptjs": "^2.4.2",
"@types/bun": "^1.3.0",
"@types/concat-stream": "^2.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/express-useragent": "^1.0.2",
"@types/luxon": "^2.3.2",
"@types/marked": "^4.0.3",
"@types/node": "^22.9.0",
"@types/passport": "^1.0.11",
"@types/qunit": "^2.19.3",
"@types/sanitize-html": "^2.6.2",
"@types/serve-favicon": "^2.5.3",
"@types/web-push": "^3.3.2",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"esbuild": "^0.25.11",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-scoutradioz-eslint": "file:scoutradioz-eslint",
"monaco-editor": "^0.52.2",
"svelte": "5.42.3"
},
"dependencies": {
"archiver": "^5.3.0",
"colors": "^1.4.0",
"concat-stream": "^2.0.0",
"esbuild-svelte": "^0.9.3",
"glob": "~7.2.0",
"less": "~4.4.2",
"less-plugin-clean-css": "^1.6.0",
"minimatch": "~3.0.5",
"nodemon": "^3.1.9",
"oh-no-i-insist": "^1.1.1",
"prettier-plugin-svelte": "^2.8.1",
"react": "^18.2.0",
"sass": "^1.93.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}