-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.64 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
{
"name": "cubecobra",
"version": "1.6.0",
"description": "",
"engines": {
"node": ">=22.0.0 <25.0.0"
},
"scripts": {
"dev": "npm-run-all --parallel dev:client dev:server dev:recommender",
"dev:client": "npm run start --workspace=packages/client",
"dev:server": "npm run dev --workspace=packages/server",
"dev:recommender": "npm run dev --workspace=packages/recommenderService",
"lint": "npx prettier --write . && npx oxlint --fix",
"lint:check": "npx prettier --check . && npx oxlint",
"check-deps": "node scripts/check-deps.js",
"preflight": "npm run check-deps && npm run lint:check && npm run ci-build",
"test:ci": "npm run test:ci --workspace=packages/client && npm run test:ci --workspace=packages/server && npm run test:ci --workspace=packages/jobs",
"ci-build": "npm run build --workspace=packages/client && npm run build --workspace=packages/server && npm run build --workspace=packages/recommenderService && npm run build --workspace=packages/cdk && npm run build --workspace=packages/dailyJobsLambda && npm run build --workspace=packages/cardUpdateMonitorLambda && npm run build --workspace=packages/botDeckbuildLambda && npm run build --workspace=packages/jobs",
"download-data-files": "npm run download-data-files --workspace=packages/scripts",
"update-draft-history": "npm run update-draft-history --workspace=packages/jobs",
"update-cube-history": "npm run update-cube-history --workspace=packages/jobs",
"update-metadata-dict": "npm run update-metadata-dict --workspace=packages/jobs",
"update-cards": "npm run update-cards --workspace=packages/jobs",
"update-combos": "npm run update-combos --workspace=packages/jobs",
"update-all": "npm run update-all --workspace=packages/jobs",
"publish": "npm run build --workspace=packages/client && npm run build --workspace=packages/server && npm run build --workspace=packages/recommenderService && npm run publish --workspace=packages/dailyJobsLambda && cd packages/scripts && npx tsx src/publish.ts",
"write-git-info": "npm run write-git-info --workspace=packages/scripts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"oxlint --fix"
]
},
"_moduleAliases": {
"analytics": "build/client/analytics",
"components": "build/client/components",
"contexts": "build/client/contexts",
"datatypes": "build/datatypes",
"drafting": "build/client/drafting",
"filtering": "build/client/filtering",
"generated": "build/client/generated",
"hooks": "build/client/hooks",
"layouts": "build/client/layouts",
"markdown": "build/client/markdown",
"pages": "build/client/pages",
"res": "build/client/res",
"utils": "build/client/utils"
},
"author": "Gwen Dekker",
"license": "ISC",
"sideEffects": false,
"browserslist": "> 0.5%, Firefox ESR, not dead, not IE > 0, not IE_Mob > 0, not safari < 7, not kaios > 0",
"dependencies": {
"autoprefixer": "^10.4.19",
"postcss": "^8.5.23",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@types/node": "^20.12.11",
"@types/rss": "^0.0.32",
"@types/serialize-javascript": "^5.0.4",
"@types/shuffle-seed": "^1.1.3",
"lerna": "^9.0.7",
"npm-run-all": "^4.1.5",
"oxlint": "^1.73.0",
"prettier": "^3.3.0",
"rimraf": "^5.0.7",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.0",
"typescript": "^7.0.2"
},
"packageManager": "npm@10.9.0",
"overrides": {
"mdast-util-gfm-autolink-literal": "2.0.0",
"constructs": "^10.0.0",
"webpack": {
"eslint-scope": "5.1.1"
}
},
"workspaces": [
"packages/*"
]
}