forked from blackjackshellac/kitchenTimer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.36 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
{
"name": "tasktimer",
"private": true,
"version": "1.1.0",
"description": "Dev tooling (ESLint, CI cache). The app is GJS/GTK; there are no npm runtime dependencies.",
"engines": {
"node": "22.x"
},
"scripts": {
"build": "node -e \"console.log('No web build in this repo (GJS desktop app); build is a noop.')\"",
"build:bundle-budget": "webpack --config webpack.config.cjs",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test:e2e": "playwright test --config=e2e/playwright.config.mjs",
"verify:api-examples": "bash bin/verify-api-examples.sh",
"verify:health-probes": "bash bin/verify-health-probes.sh",
"verify:metrics": "bash bin/verify-metrics.sh",
"sbom": "bash bin/generate-sbom.sh"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.3",
"@babel/preset-react": "^7.28.5",
"@cyclonedx/cyclonedx-npm": "^2.1.0",
"@msw/playwright": "^0.6.6",
"@playwright/test": "^1.58.2",
"@typescript-eslint/parser": "^8.59.1",
"babel-loader": "^10.1.1",
"eslint": "^8.57.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"msw": "^2.12.14",
"playwright": "^1.58.2",
"react": "^19.2.5",
"typescript": "^6.0.3",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2"
}
}