-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.12 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 4.12 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "ilmo",
"version": "0.0.1",
"private": true,
"description": "Ilmoittaudu tapahtumiin",
"scripts": {
"setup": "pnpm install && pnpm setup:env auto && pnpm setup:db",
"setup:env": "node ./scripts/setup_env.mjs",
"setup:db": "node ./scripts/setup_db.mjs",
"start": "node ./scripts/start.mjs",
"test": "node scripts/test.mjs",
"test:watch": "node scripts/test.mjs --watch",
"lint": "tsc -b && pnpm prettier:all --check && pnpm eslint .",
"lint:fix": "pnpm eslint --fix . && pnpm prettier:all --write && jsonsort @app/client/src/translations",
"eslint": "eslint",
"prettier:all": "prettier \"**/*.{js,jsx,ts,tsx,graphql,md}\"",
"build": "pnpm -r --workspace-concurrency=1 run build",
"clean": "node ./scripts/clean.mjs",
"reset": "pnpm clean && node ./scripts/delete-env-file.mjs",
"tsc": "tsc -b ./@app/lib/tsconfig.cjs.json tsconfig.json",
"dev": "pnpm --filter @app/graphql run build && pnpm tsc && pnpm concurrently",
"concurrently": "concurrently --kill-others-on-fail --names \"TSC,WATCH,RUN\" --prefix \"({name})\" --prefix-colors \"yellow.bold,yellow.bold,cyan.bold,greenBright.bold\" \"tsc -b --watch --preserveWatchOutput\" \"pnpm -r --parallel run watch\" \"pnpm -r --parallel run dev\"",
"depcheck": "pnpm -r run depcheck",
"upgrade-packages": "ncu --deep -u",
"--shortcuts to run commands in workspaces--": "",
"client": "pnpm --filter @app/client",
"components": "pnpm --filter @app/components",
"db": "pnpm --filter @app/db",
"e2e": "pnpm --filter @app/e2e",
"graphql": "pnpm --filter @app/graphql",
"lib": "pnpm --filter @app/lib",
"server": "pnpm --filter @app/server",
"worker": "pnpm --filter @app/worker",
"postinstall": "npx next telemetry disable"
},
"author": "Prodeko webbitiimi <cto@prodeko.org>",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@app/components": "workspace:*",
"@app/config": "workspace:*",
"@app/db": "workspace:*",
"@app/graphql": "workspace:*",
"@app/lib": "workspace:*",
"@emotion-icons/material": "^3.14.0",
"core-js": "^3.24.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.0.0",
"regenerator-runtime": "0.13.9",
"string-width": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@eslint/js": "^9.18.0",
"@types/jest": "^29.5.14",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"chalk-pipe": "^5.1.1",
"concurrently": "^7.3.0",
"depcheck": "^1.4.3",
"dotenv": "^16.0.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"graphql": "^16.5.0",
"graphql-config": "^4.3.3",
"inquirer": "^9.1.0",
"jest": "^29.7.0",
"json-sort-cli": "^2.0.15",
"nodemon": "^2.0.19",
"npm-check-updates": "^16.0.5",
"prettier": "3.4.2",
"react-test-renderer": "18.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.3.1",
"ts-node": "10.8.2",
"type-fest": "^2.18.0",
"typescript": "5.7.3"
},
"pnpm": {
"overrides": {
"dayjs": "^1.11.20",
"graphql": "15.x",
"graphql-upload": "13.x"
},
"onlyBuiltDependencies": [
"@sentry/cli",
"cypress",
"next-translate-plugin",
"sharp"
]
},
"prettier": {
"trailingComma": "es5",
"proseWrap": "always",
"semi": false,
"overrides": [
{
"files": [
"*.yml",
"*.yaml"
],
"options": {
"printWidth": 120
}
}
]
},
"engines": {
"node": ">=20",
"pnpm": ">=10"
}
}